pub trait Datum {
// Required method
fn datum_type() -> DatumType;
}Required Methods§
fn datum_type() -> DatumType
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
pub trait Datum {
// Required method
fn datum_type() -> DatumType;
}This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".