#[repr(C)]pub struct NullableDatum {
pub value: Datum,
pub isnull: bool,
}
Fields§
§value: Datum
§isnull: bool
Trait Implementations§
Source§impl Clone for NullableDatum
impl Clone for NullableDatum
Source§fn clone(&self) -> NullableDatum
fn clone(&self) -> NullableDatum
Returns a copy 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 Debug for NullableDatum
impl Debug for NullableDatum
Source§impl Default for NullableDatum
impl Default for NullableDatum
Source§impl TryFrom<NullableDatum> for Datum
impl TryFrom<NullableDatum> for Datum
impl Copy for NullableDatum
Auto Trait Implementations§
impl Freeze for NullableDatum
impl RefUnwindSafe for NullableDatum
impl !Send for NullableDatum
impl !Sync for NullableDatum
impl Unpin 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