Trait frame_support::storage::TryAppendValue[][src]

pub trait TryAppendValue<T: StorageTryAppend<I>, I: Encode> {
    fn try_append<LikeI: EncodeLike<I>>(item: LikeI) -> Result<(), ()>;
}
Expand description

Storage value that is capable of StorageTryAppend.

Required methods

Try and append the item into the storage item.

This might fail if bounds are not respected.

Implementors