pub enum OptionIr2<T: FromValue> {
None,
Some(T::Intermediate),
}Expand description
Intermediate result of a Value-to-Option<T> conversion.
Variants§
None
Some(T::Intermediate)
Trait Implementations§
impl<T: FromValue> StructuralPartialEq for OptionIr2<T>
Auto Trait Implementations§
impl<T> Freeze for OptionIr2<T>
impl<T> RefUnwindSafe for OptionIr2<T>
impl<T> Send for OptionIr2<T>
impl<T> Sync for OptionIr2<T>
impl<T> Unpin for OptionIr2<T>
impl<T> UnwindSafe for OptionIr2<T>
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