pub trait ToDatumRef:
PartialEq
+ Eq
+ Debug {
// 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", so this trait is not object safe.