Trait ObjectStoreContent

Source
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§

Source

fn new_id(id_val: u16) -> Self::IdType

Source

fn id(&self) -> &Self::IdType

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.

Implementors§