pub trait StorageTryAppend<Item>: StorageDecodeLength + Sealed {
// Required method
fn bound() -> usize;
}
Expand description
Marker trait that is implemented for types that support the storage::append
api with a limit
on the number of element.
This trait is sealed.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.