pub trait BoundedStorable: Storable {
    fn max_size() -> u32;
}
Expand description

A trait indicating that a Storable element is bounded in size.

Required Methods

The maximum size, in bytes, of the type when serialized.

Implementations on Foreign Types

Implementors