pub trait StoreDictKey: DictKey {
// Required method
fn store_into_data(&self, data: &mut CellDataBuilder) -> Result<(), Error>;
}Expand description
Type which can be stored as a dict key.
Required Methods§
Sourcefn store_into_data(&self, data: &mut CellDataBuilder) -> Result<(), Error>
fn store_into_data(&self, data: &mut CellDataBuilder) -> Result<(), Error>
Stores key bits into a 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.