pub unsafe trait StorableConstBytesLen: Storable {
    const BYTES_LEN: usize;
}
Expand description

Types that can be stored with a fixed-length byte representation

This trait should be implemented when Storable::CONST_BYTES_LEN is true.

Required Associated Constants

Length of byte representation as constant

Implementations on Foreign Types

Implementors