Struct std::storage::storage_vec::OutOfBounds
pub struct OutOfBounds {
/// The length of the `StorageVec`.
pub length: u64,
/// The index that was out-of-bounds.
/// `index` is always greater than or equal to `length`.
pub index: u64,
}Expand description
Describes an out-of-bounds StorageVec access.
Fields
length: u64The length of the StorageVec.
index: u64The index that was out-of-bounds.
index is always greater than or equal to length.