pub trait StorageTryAppend<Item>: StorageDecodeLength + Sealed {
    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.