Trait ToDatumRef

Source
pub trait ToDatumRef:
    PartialEq
    + Eq
    + Debug {
    // Required method
    fn to_datum_ref(&self) -> DatumRef<'_>;
}

Required Methods§

Source

fn to_datum_ref(&self) -> DatumRef<'_>

Convert the datum to DatumRef.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl ToDatumRef for Option<&ScalarImpl>

Source§

impl<'a, T: 'a + ToDatumRef + ?Sized> ToDatumRef for &'a T
where &'a T: PartialEq + Eq + Debug,

Implementors§