Struct fuel_vm::storage::MemoryStorage
source · pub struct MemoryStorage { /* private fields */ }
Expand description
In-memory storage implementation for the interpreter.
It tracks 3 states:
- memory: the transactions will be applied to this state.
- transacted: will receive the committed
memory
state. - persisted: will receive the persisted
transacted
state.
Implementations§
source§impl MemoryStorage
impl MemoryStorage
sourcepub fn new(block_height: BlockHeight, coinbase: ContractId) -> Self
pub fn new(block_height: BlockHeight, coinbase: ContractId) -> Self
Create a new memory storage.
sourcepub fn new_with_versions(
block_height: BlockHeight,
coinbase: ContractId,
consensus_parameters_version: u32,
state_transition_version: u32,
) -> Self
pub fn new_with_versions( block_height: BlockHeight, coinbase: ContractId, consensus_parameters_version: u32, state_transition_version: u32, ) -> Self
Create a new memory storage with versions.
sourcepub fn all_contract_state(
&self,
) -> impl Iterator<Item = (&ContractsStateKey, &ContractsStateData)>
pub fn all_contract_state( &self, ) -> impl Iterator<Item = (&ContractsStateKey, &ContractsStateData)>
Iterate over all contract state in storage
sourcepub fn contract_state(
&self,
contract: &ContractId,
key: &Bytes32,
) -> Cow<'_, ContractsStateData>
pub fn contract_state( &self, contract: &ContractId, key: &Bytes32, ) -> Cow<'_, ContractsStateData>
Fetch a mapping from the contract state.
Trait Implementations§
source§impl<M, Ecal: EcalHandler> AsMut<MemoryStorage> for MemoryClient<M, Ecal>
impl<M, Ecal: EcalHandler> AsMut<MemoryStorage> for MemoryClient<M, Ecal>
source§fn as_mut(&mut self) -> &mut MemoryStorage
fn as_mut(&mut self) -> &mut MemoryStorage
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl<M, Ecal: EcalHandler> AsRef<MemoryStorage> for MemoryClient<M, Ecal>
impl<M, Ecal: EcalHandler> AsRef<MemoryStorage> for MemoryClient<M, Ecal>
source§fn as_ref(&self) -> &MemoryStorage
fn as_ref(&self) -> &MemoryStorage
Converts this type into a shared reference of the (usually inferred) input type.
source§impl Clone for MemoryStorage
impl Clone for MemoryStorage
source§fn clone(&self) -> MemoryStorage
fn clone(&self) -> MemoryStorage
Returns a copy 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 moresource§impl ContractsAssetsStorage for MemoryStorage
impl ContractsAssetsStorage for MemoryStorage
source§fn contract_asset_id_balance(
&self,
id: &ContractId,
asset_id: &AssetId,
) -> Result<Option<Word>, Self::Error>
fn contract_asset_id_balance( &self, id: &ContractId, asset_id: &AssetId, ) -> Result<Option<Word>, Self::Error>
Fetch the balance of an asset ID in a contract storage.
source§fn contract_asset_id_balance_insert(
&mut self,
contract: &ContractId,
asset_id: &AssetId,
value: Word,
) -> Result<Option<Word>, Self::Error>
fn contract_asset_id_balance_insert( &mut self, contract: &ContractId, asset_id: &AssetId, value: Word, ) -> Result<Option<Word>, Self::Error>
Update the balance of an asset ID in a contract storage.
Returns the old balance, if any.
source§impl Debug for MemoryStorage
impl Debug for MemoryStorage
source§impl Default for MemoryStorage
impl Default for MemoryStorage
source§impl InterpreterStorage for MemoryStorage
impl InterpreterStorage for MemoryStorage
§type DataError = Infallible
type DataError = Infallible
Error implementation for reasons unspecified in the protocol.
source§fn block_height(&self) -> Result<BlockHeight, Infallible>
fn block_height(&self) -> Result<BlockHeight, Infallible>
Provide the current block height in which the transactions should be
executed.
source§fn consensus_parameters_version(&self) -> Result<u32, Self::DataError>
fn consensus_parameters_version(&self) -> Result<u32, Self::DataError>
Provide the current version of consensus parameters used to execute transaction.
source§fn state_transition_version(&self) -> Result<u32, Self::DataError>
fn state_transition_version(&self) -> Result<u32, Self::DataError>
Provide the current version of state transition function used to execute
transaction.
source§fn timestamp(&self, height: BlockHeight) -> Result<Word, Self::DataError>
fn timestamp(&self, height: BlockHeight) -> Result<Word, Self::DataError>
Return the timestamp of a given block Read more
source§fn block_hash(&self, block_height: BlockHeight) -> Result<Bytes32, Infallible>
fn block_hash(&self, block_height: BlockHeight) -> Result<Bytes32, Infallible>
Provide the block hash from a given height.
source§fn coinbase(&self) -> Result<ContractId, Infallible>
fn coinbase(&self) -> Result<ContractId, Infallible>
Provide the coinbase address for the VM instructions implementation.
source§fn set_consensus_parameters(
&mut self,
version: u32,
consensus_parameters: &ConsensusParameters,
) -> Result<Option<ConsensusParameters>, Self::DataError>
fn set_consensus_parameters( &mut self, version: u32, consensus_parameters: &ConsensusParameters, ) -> Result<Option<ConsensusParameters>, Self::DataError>
Set the consensus parameters in the storage under the
version
. Read moresource§fn set_state_transition_bytecode(
&mut self,
version: u32,
bytecode: &Bytes32,
) -> Result<Option<Bytes32>, Self::DataError>
fn set_state_transition_bytecode( &mut self, version: u32, bytecode: &Bytes32, ) -> Result<Option<Bytes32>, Self::DataError>
Set the state transition bytecode in the storage under the
version
. Read moresource§fn contract_state_range(
&self,
id: &ContractId,
start_key: &Bytes32,
range: usize,
) -> Result<Vec<Option<Cow<'_, ContractsStateData>>>, Self::DataError>
fn contract_state_range( &self, id: &ContractId, start_key: &Bytes32, range: usize, ) -> Result<Vec<Option<Cow<'_, ContractsStateData>>>, Self::DataError>
Fetch a range of values from a key-value mapping in a contract storage.
Returns the full range requested using optional values in case
a requested slot is unset.
source§fn contract_state_insert_range<'a, I>(
&mut self,
contract: &ContractId,
start_key: &Bytes32,
values: I,
) -> Result<usize, Self::DataError>
fn contract_state_insert_range<'a, I>( &mut self, contract: &ContractId, start_key: &Bytes32, values: I, ) -> Result<usize, Self::DataError>
Insert a range of key-value mappings into contract storage.
Returns the number of keys that were previously unset but are now set.
source§fn contract_state_remove_range(
&mut self,
contract: &ContractId,
start_key: &Bytes32,
range: usize,
) -> Result<Option<()>, Self::DataError>
fn contract_state_remove_range( &mut self, contract: &ContractId, start_key: &Bytes32, range: usize, ) -> Result<Option<()>, Self::DataError>
Remove a range of key-values from contract storage.
Returns None if any of the keys in the range were already unset.
source§fn contains_state_transition_bytecode_root(
&self,
root: &Bytes32,
) -> Result<bool, Self::DataError>
fn contains_state_transition_bytecode_root( &self, root: &Bytes32, ) -> Result<bool, Self::DataError>
Returns
true
if the fully uploaded state transition bytecode is present in the
storage.source§fn deploy_contract_with_id(
&mut self,
slots: &[StorageSlot],
contract: &Contract,
id: &ContractId,
) -> Result<(), Self::DataError>
fn deploy_contract_with_id( &mut self, slots: &[StorageSlot], contract: &Contract, id: &ContractId, ) -> Result<(), Self::DataError>
Deploy a contract into the storage with contract id
source§fn storage_contract(
&self,
id: &ContractId,
) -> Result<Option<Cow<'_, Contract>>, Self::DataError>
fn storage_contract( &self, id: &ContractId, ) -> Result<Option<Cow<'_, Contract>>, Self::DataError>
Fetch a previously inserted contract code from the chain state for a
given contract.
source§fn storage_contract_size(
&self,
id: &ContractId,
) -> Result<Option<usize>, Self::DataError>
fn storage_contract_size( &self, id: &ContractId, ) -> Result<Option<usize>, Self::DataError>
Fetch the size of a previously inserted contract code from the chain state for a
given contract.
source§fn read_contract(
&self,
id: &ContractId,
writer: &mut [u8],
) -> Result<Option<Word>, Self::DataError>
fn read_contract( &self, id: &ContractId, writer: &mut [u8], ) -> Result<Option<Word>, Self::DataError>
Read contract bytes from storage into the buffer.
source§fn storage_contract_insert(
&mut self,
id: &ContractId,
contract: &Contract,
) -> Result<Option<Contract>, Self::DataError>
fn storage_contract_insert( &mut self, id: &ContractId, contract: &Contract, ) -> Result<Option<Contract>, Self::DataError>
Append a contract to the chain, provided its identifier. Read more
source§fn storage_contract_exists(
&self,
id: &ContractId,
) -> Result<bool, Self::DataError>
fn storage_contract_exists( &self, id: &ContractId, ) -> Result<bool, Self::DataError>
Check if a provided contract exists in the chain.
source§fn contract_state(
&self,
id: &ContractId,
key: &Bytes32,
) -> Result<Option<Cow<'_, ContractsStateData>>, Self::DataError>
fn contract_state( &self, id: &ContractId, key: &Bytes32, ) -> Result<Option<Cow<'_, ContractsStateData>>, Self::DataError>
Fetch the value form a key-value mapping in a contract storage.
source§fn contract_state_insert(
&mut self,
contract: &ContractId,
key: &Bytes32,
value: &[u8],
) -> Result<(usize, Option<Vec<u8>>), Self::DataError>
fn contract_state_insert( &mut self, contract: &ContractId, key: &Bytes32, value: &[u8], ) -> Result<(usize, Option<Vec<u8>>), Self::DataError>
Insert a key-value mapping in a contract storage.
source§fn contract_state_remove(
&mut self,
contract: &ContractId,
key: &Bytes32,
) -> Result<Option<ContractsStateData>, Self::DataError>
fn contract_state_remove( &mut self, contract: &ContractId, key: &Bytes32, ) -> Result<Option<ContractsStateData>, Self::DataError>
Remove a key-value mapping from a contract storage.
source§impl StorageInspect<ContractsAssets> for MemoryStorage
impl StorageInspect<ContractsAssets> for MemoryStorage
type Error = Infallible
source§fn get(
&self,
key: &<ContractsAssets as Mappable>::Key,
) -> Result<Option<Cow<'_, Word>>, Infallible>
fn get( &self, key: &<ContractsAssets as Mappable>::Key, ) -> Result<Option<Cow<'_, Word>>, Infallible>
Retrieve
Cow<Value>
such as Key->Value
.source§fn contains_key(
&self,
key: &<ContractsAssets as Mappable>::Key,
) -> Result<bool, Infallible>
fn contains_key( &self, key: &<ContractsAssets as Mappable>::Key, ) -> Result<bool, Infallible>
Return
true
if there is a Key
mapping to a value in the storage.source§impl StorageInspect<ContractsRawCode> for MemoryStorage
impl StorageInspect<ContractsRawCode> for MemoryStorage
type Error = Infallible
source§fn get(&self, key: &ContractId) -> Result<Option<Cow<'_, Contract>>, Infallible>
fn get(&self, key: &ContractId) -> Result<Option<Cow<'_, Contract>>, Infallible>
Retrieve
Cow<Value>
such as Key->Value
.source§fn contains_key(&self, key: &ContractId) -> Result<bool, Infallible>
fn contains_key(&self, key: &ContractId) -> Result<bool, Infallible>
Return
true
if there is a Key
mapping to a value in the storage.source§impl StorageInspect<ContractsState> for MemoryStorage
impl StorageInspect<ContractsState> for MemoryStorage
type Error = Infallible
source§fn get(
&self,
key: &<ContractsState as Mappable>::Key,
) -> Result<Option<Cow<'_, <ContractsState as Mappable>::OwnedValue>>, Infallible>
fn get( &self, key: &<ContractsState as Mappable>::Key, ) -> Result<Option<Cow<'_, <ContractsState as Mappable>::OwnedValue>>, Infallible>
Retrieve
Cow<Value>
such as Key->Value
.source§fn contains_key(
&self,
key: &<ContractsState as Mappable>::Key,
) -> Result<bool, Infallible>
fn contains_key( &self, key: &<ContractsState as Mappable>::Key, ) -> Result<bool, Infallible>
Return
true
if there is a Key
mapping to a value in the storage.source§impl StorageInspect<UploadedBytecodes> for MemoryStorage
impl StorageInspect<UploadedBytecodes> for MemoryStorage
type Error = Infallible
source§fn get(
&self,
key: &<UploadedBytecodes as Mappable>::Key,
) -> Result<Option<Cow<'_, UploadedBytecode>>, Infallible>
fn get( &self, key: &<UploadedBytecodes as Mappable>::Key, ) -> Result<Option<Cow<'_, UploadedBytecode>>, Infallible>
Retrieve
Cow<Value>
such as Key->Value
.source§fn contains_key(
&self,
key: &<UploadedBytecodes as Mappable>::Key,
) -> Result<bool, Infallible>
fn contains_key( &self, key: &<UploadedBytecodes as Mappable>::Key, ) -> Result<bool, Infallible>
Return
true
if there is a Key
mapping to a value in the storage.source§impl StorageMutate<ContractsAssets> for MemoryStorage
impl StorageMutate<ContractsAssets> for MemoryStorage
source§impl StorageMutate<ContractsRawCode> for MemoryStorage
impl StorageMutate<ContractsRawCode> for MemoryStorage
source§fn insert(
&mut self,
key: &ContractId,
value: &[u8],
) -> Result<Option<Contract>, Infallible>
fn insert( &mut self, key: &ContractId, value: &[u8], ) -> Result<Option<Contract>, Infallible>
Append
Key->Value
mapping to the storage. Read moresource§fn remove(&mut self, key: &ContractId) -> Result<Option<Contract>, Infallible>
fn remove(&mut self, key: &ContractId) -> Result<Option<Contract>, Infallible>
Remove
Key->Value
mapping from the storage. Read moresource§impl StorageMutate<ContractsState> for MemoryStorage
impl StorageMutate<ContractsState> for MemoryStorage
source§fn insert(
&mut self,
key: &<ContractsState as Mappable>::Key,
value: &<ContractsState as Mappable>::Value,
) -> Result<Option<<ContractsState as Mappable>::OwnedValue>, Infallible>
fn insert( &mut self, key: &<ContractsState as Mappable>::Key, value: &<ContractsState as Mappable>::Value, ) -> Result<Option<<ContractsState as Mappable>::OwnedValue>, Infallible>
Append
Key->Value
mapping to the storage. Read moresource§fn remove(
&mut self,
key: &<ContractsState as Mappable>::Key,
) -> Result<Option<ContractsStateData>, Infallible>
fn remove( &mut self, key: &<ContractsState as Mappable>::Key, ) -> Result<Option<ContractsStateData>, Infallible>
Remove
Key->Value
mapping from the storage. Read moresource§impl StorageMutate<UploadedBytecodes> for MemoryStorage
impl StorageMutate<UploadedBytecodes> for MemoryStorage
source§fn insert(
&mut self,
key: &<UploadedBytecodes as Mappable>::Key,
value: &<UploadedBytecodes as Mappable>::Value,
) -> Result<Option<UploadedBytecode>, Infallible>
fn insert( &mut self, key: &<UploadedBytecodes as Mappable>::Key, value: &<UploadedBytecodes as Mappable>::Value, ) -> Result<Option<UploadedBytecode>, Infallible>
Append
Key->Value
mapping to the storage. Read moresource§fn remove(
&mut self,
key: &<UploadedBytecodes as Mappable>::Key,
) -> Result<Option<UploadedBytecode>, Infallible>
fn remove( &mut self, key: &<UploadedBytecodes as Mappable>::Key, ) -> Result<Option<UploadedBytecode>, Infallible>
Remove
Key->Value
mapping from the storage. Read moresource§impl StorageRead<ContractsRawCode> for MemoryStorage
impl StorageRead<ContractsRawCode> for MemoryStorage
source§fn read(
&self,
key: &ContractId,
buf: &mut [u8],
) -> Result<Option<usize>, Self::Error>
fn read( &self, key: &ContractId, buf: &mut [u8], ) -> Result<Option<usize>, Self::Error>
Read the value stored at the given key into the provided buffer if the value
exists. Read more
source§fn read_alloc(&self, key: &ContractId) -> Result<Option<Vec<u8>>, Self::Error>
fn read_alloc(&self, key: &ContractId) -> Result<Option<Vec<u8>>, Self::Error>
Same as
read
but allocates a new buffer and returns it. Read moresource§impl StorageRead<ContractsState> for MemoryStorage
impl StorageRead<ContractsState> for MemoryStorage
source§impl StorageSize<ContractsRawCode> for MemoryStorage
impl StorageSize<ContractsRawCode> for MemoryStorage
source§fn size_of_value(&self, key: &ContractId) -> Result<Option<usize>, Infallible>
fn size_of_value(&self, key: &ContractId) -> Result<Option<usize>, Infallible>
Return the number of bytes stored at this key.
source§impl StorageSize<ContractsState> for MemoryStorage
impl StorageSize<ContractsState> for MemoryStorage
source§fn size_of_value(
&self,
key: &<ContractsState as Mappable>::Key,
) -> Result<Option<usize>, Infallible>
fn size_of_value( &self, key: &<ContractsState as Mappable>::Key, ) -> Result<Option<usize>, Infallible>
Return the number of bytes stored at this key.
source§impl StorageWrite<ContractsRawCode> for MemoryStorage
impl StorageWrite<ContractsRawCode> for MemoryStorage
source§fn write(&mut self, key: &ContractId, buf: &[u8]) -> Result<usize, Infallible>
fn write(&mut self, key: &ContractId, buf: &[u8]) -> Result<usize, Infallible>
Write the value to the given key from the provided buffer. Read more
source§impl StorageWrite<ContractsState> for MemoryStorage
impl StorageWrite<ContractsState> for MemoryStorage
source§fn write(
&mut self,
key: &<ContractsState as Mappable>::Key,
buf: &[u8],
) -> Result<usize, Infallible>
fn write( &mut self, key: &<ContractsState as Mappable>::Key, buf: &[u8], ) -> Result<usize, Infallible>
Write the value to the given key from the provided buffer. Read more
Auto Trait Implementations§
impl Freeze for MemoryStorage
impl RefUnwindSafe for MemoryStorage
impl Send for MemoryStorage
impl Sync for MemoryStorage
impl Unpin for MemoryStorage
impl UnwindSafe for MemoryStorage
Blanket Implementations§
source§impl<T> AnyDebug for T
impl<T> AnyDebug for T
source§fn as_any_ref(&self) -> &(dyn Any + 'static)
fn as_any_ref(&self) -> &(dyn Any + 'static)
Returns a reference to the underlying type as
Any
.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
source§impl<T> FmtForward for T
impl<T> FmtForward for T
source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
Causes
self
to use its Binary
implementation when Debug
-formatted.source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
Causes
self
to use its Display
implementation when
Debug
-formatted.source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
Causes
self
to use its LowerExp
implementation when
Debug
-formatted.source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
Causes
self
to use its LowerHex
implementation when
Debug
-formatted.source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
Causes
self
to use its Octal
implementation when Debug
-formatted.source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
Causes
self
to use its Pointer
implementation when
Debug
-formatted.source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
Causes
self
to use its UpperExp
implementation when
Debug
-formatted.source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
Causes
self
to use its UpperHex
implementation when
Debug
-formatted.source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Pipes by value. This is generally the method you want to use. Read more
source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
Borrows
self
and passes that borrow into the pipe function. Read moresource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
Mutably borrows
self
and passes that borrow into the pipe function. Read moresource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
Borrows
self
, then passes self.as_ref()
into the pipe function.source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
Mutably borrows
self
, then passes self.as_mut()
into the pipe
function.source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
Borrows
self
, then passes self.deref()
into the pipe function.source§impl<T> StorageAsMut for T
impl<T> StorageAsMut for T
fn storage<Type>(&mut self) -> StorageMut<'_, Self, Type>where
Type: Mappable,
fn storage_as_mut<Type>(&mut self) -> StorageMut<'_, Self, Type>where
Type: Mappable,
source§impl<T> StorageAsRef for T
impl<T> StorageAsRef for T
fn storage<Type>(&self) -> StorageRef<'_, Self, Type>where
Type: Mappable,
fn storage_as_ref<Type>(&self) -> StorageRef<'_, Self, Type>where
Type: Mappable,
source§impl<S, Type> StorageInspectInfallible<Type> for S
impl<S, Type> StorageInspectInfallible<Type> for S
source§impl<S, Type> StorageMutateInfallible<Type> for S
impl<S, Type> StorageMutateInfallible<Type> for S
source§impl<T> Tap for T
impl<T> Tap for T
source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Immutable access to the
Borrow<B>
of a value. Read moresource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
Mutable access to the
BorrowMut<B>
of a value. Read moresource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
Immutable access to the
AsRef<R>
view of a value. Read moresource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
Mutable access to the
AsMut<R>
view of a value. Read moresource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Immutable access to the
Deref::Target
of a value. Read moresource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Mutable access to the
Deref::Target
of a value. Read moresource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls
.tap()
only in debug builds, and is erased in release builds.source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls
.tap_mut()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
Calls
.tap_borrow()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
Calls
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
Calls
.tap_ref()
only in debug builds, and is erased in release
builds.source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
Calls
.tap_ref_mut()
only in debug builds, and is erased in release
builds.source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
Calls
.tap_deref()
only in debug builds, and is erased in release
builds.