pub enum StorageMapError<V> {
    /// Indicates that a value already exists for the key.
    OccupiedError: V,
}
Expand description

Errors pertaining to the StorageMap struct.

Variants

OccupiedError: V

Indicates that a value already exists for the key.

Trait Implementations

pub fn abi_encode(self, buffer: Buffer) -> Buffer

pub fn abi_decode(refmut buffer: BufferReader) -> Self