pub trait LoadDictKey: DictKey + Sized {
// Required method
fn load_from_data(data: &CellDataBuilder) -> Option<Self>;
}Expand description
Type which can be loaded as a dict key.
Required Methods§
Sourcefn load_from_data(data: &CellDataBuilder) -> Option<Self>
fn load_from_data(data: &CellDataBuilder) -> Option<Self>
Creates a key from a raw builder data.
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.