pub trait ListFn: Sized {
type Item;
type End;
// Required method
fn next(self) -> ListState<Self>;
}
Expand description
A function which returns a list.
pub trait ListFn: Sized {
type Item;
type End;
// Required method
fn next(self) -> ListState<Self>;
}
A function which returns a list.