pub struct NullableValue<'i>(/* private fields */);Expand description
Wrapper type that can be used to display nullable column value represented as Option<Value>.
Trait Implementations§
Source§impl<'i> Clone for NullableValue<'i>
impl<'i> Clone for NullableValue<'i>
Source§fn clone(&self) -> NullableValue<'i>
fn clone(&self) -> NullableValue<'i>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'i> Debug for NullableValue<'i>
impl<'i> Debug for NullableValue<'i>
Source§impl<'i> Display for NullableValue<'i>
impl<'i> Display for NullableValue<'i>
Source§impl<'i> PartialEq for NullableValue<'i>
impl<'i> PartialEq for NullableValue<'i>
impl<'i> StructuralPartialEq for NullableValue<'i>
Auto Trait Implementations§
impl<'i> Freeze for NullableValue<'i>
impl<'i> RefUnwindSafe for NullableValue<'i>
impl<'i> Send for NullableValue<'i>
impl<'i> Sync for NullableValue<'i>
impl<'i> Unpin for NullableValue<'i>
impl<'i> UnwindSafe for NullableValue<'i>
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