pub enum MaybeToInt {
Int(i64),
NotApplicable,
Err(TypeError),
UncriticalReturn(Value),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MaybeToInt
impl RefUnwindSafe for MaybeToInt
impl !Send for MaybeToInt
impl !Sync for MaybeToInt
impl Unpin for MaybeToInt
impl UnwindSafe for MaybeToInt
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