pub enum ListState<F: ListFn> {
Some(ListSome<F>),
End(F::End),
}Expand description
A list.
Variants§
Implementations§
Auto Trait Implementations§
impl<F> Freeze for ListState<F>
impl<F> RefUnwindSafe for ListState<F>
impl<F> Send for ListState<F>
impl<F> Sync for ListState<F>
impl<F> Unpin for ListState<F>
impl<F> UnwindSafe for ListState<F>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more