#[repr(C)]pub struct NullableDatum {
pub value: Datum,
pub isnull: bool,
}Fields§
§value: Datum§isnull: boolTrait Implementations§
Source§impl Clone for NullableDatum
impl Clone for NullableDatum
Source§fn clone(&self) -> NullableDatum
fn clone(&self) -> NullableDatum
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for NullableDatum
Source§impl Debug for NullableDatum
impl Debug for NullableDatum
Source§impl Default for NullableDatum
impl Default for NullableDatum
Auto Trait Implementations§
impl !Send for NullableDatum
impl !Sync for NullableDatum
impl Freeze for NullableDatum
impl RefUnwindSafe for NullableDatum
impl Unpin for NullableDatum
impl UnsafeUnpin for NullableDatum
impl UnwindSafe for NullableDatum
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