pub trait FromMdbValue {
    fn from_mdb_value(value: &MdbValue<'_>) -> Self;
}
Expand description

FromMdbValue is supposed to reconstruct a value from memory slice. It allows to use zero copy where it is required.

Required methods

Implementations on Foreign Types

Implementors