pub trait StorableWithOwned<T>: Storable {
    unsafe fn owned_from_bytes_unchecked(bytes: &[u8]) -> T;
}
Expand description

Storable types where the owning type of the pointed-to restored value is a certain type

Required Methods

Converts from byte slice into (owned) Self

Implementors