pub trait ObjectStoreContent {
type IdType;
// Required methods
fn new_id(id_val: u16) -> Self::IdType;
fn id(&self) -> &Self::IdType;
}Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".