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

Types that can be stored where the restored owned version is a certain type

Required Methods

Converts from byte slice into (owned) Self

Implementors