pub trait ToDatumRef:
PartialEq
+ Eq
+ Debug
+ Send
+ Sync {
// Required method
fn to_datum_ref(&self) -> DatumRef<'_>;
}Required Methods§
Sourcefn to_datum_ref(&self) -> DatumRef<'_>
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".