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