pub enum OptionList<I, E> {
Some {
first: I,
end: E,
},
End(E),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<I, E> Freeze for OptionList<I, E>
impl<I, E> RefUnwindSafe for OptionList<I, E>where
I: RefUnwindSafe,
E: RefUnwindSafe,
impl<I, E> Send for OptionList<I, E>
impl<I, E> Sync for OptionList<I, E>
impl<I, E> Unpin for OptionList<I, E>
impl<I, E> UnwindSafe for OptionList<I, E>where
I: UnwindSafe,
E: UnwindSafe,
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