pub struct StorageResultItem {
pub key: Vec<u8>,
pub value: Option<Vec<u8>>,
pub hash: Option<Vec<u8>>,
pub closest_descendant_merkle_value: Option<Vec<u8>>,
}Expand description
A single storage result item returned in OperationStorageItems.
Fields§
§key: Vec<u8>§value: Option<Vec<u8>>Nullable storage value at key.
hash: Option<Vec<u8>>Nullable hash of the storage value.
closest_descendant_merkle_value: Option<Vec<u8>>Nullable closest-descendant Merkle value.
Trait Implementations§
Source§impl Clone for StorageResultItem
impl Clone for StorageResultItem
Source§fn clone(&self) -> StorageResultItem
fn clone(&self) -> StorageResultItem
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for StorageResultItem
impl RefUnwindSafe for StorageResultItem
impl Send for StorageResultItem
impl Sync for StorageResultItem
impl Unpin for StorageResultItem
impl UnsafeUnpin for StorageResultItem
impl UnwindSafe for StorageResultItem
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more