pub enum Nullable {
NotNull,
Null,
}
Expand description
Represents whether a value is explicitly specified as either null or not null.
Variants§
Trait Implementations§
impl Eq for Nullable
impl StructuralPartialEq for Nullable
Auto Trait Implementations§
impl Freeze for Nullable
impl RefUnwindSafe for Nullable
impl Send for Nullable
impl Sync for Nullable
impl Unpin for Nullable
impl UnwindSafe for Nullable
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