Struct fuel_core::database::storage::ContractsAssetsMerkleData
source · pub struct ContractsAssetsMerkleData;
Expand description
The table of SMT data for Contract assets.
Trait Implementations§
source§impl Mappable for ContractsAssetsMerkleData
impl Mappable for ContractsAssetsMerkleData
§type Key = [u8; 32]
type Key = [u8; 32]
The key type is used during interaction with the storage. In most cases, it is the same
as
Self::OwnedKey
.§type OwnedKey = <ContractsAssetsMerkleData as Mappable>::Key
type OwnedKey = <ContractsAssetsMerkleData as Mappable>::Key
The owned type of the
Key
retrieving from the storage.§type Value = (u32, u8, [u8; 32], [u8; 32])
type Value = (u32, u8, [u8; 32], [u8; 32])
The value type is used while setting the value to the storage. In most cases, it is the same
as
Self::OwnedValue
, but it is without restriction and can be used for performance
optimizations.§type OwnedValue = <ContractsAssetsMerkleData as Mappable>::Value
type OwnedValue = <ContractsAssetsMerkleData as Mappable>::Value
The owned type of the
Value
retrieving from the storage.Auto Trait Implementations§
impl RefUnwindSafe for ContractsAssetsMerkleData
impl Send for ContractsAssetsMerkleData
impl Sync for ContractsAssetsMerkleData
impl Unpin for ContractsAssetsMerkleData
impl UnwindSafe for ContractsAssetsMerkleData
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