pub struct PredicateStorage<D> { /* private fields */ }
Expand description
No-op storage used for predicate operations.
The storage implementations are expected to provide KV-like operations for contract operations. However, predicates, as defined in the protocol, cannot execute contract opcodes. This means its storage backend for predicate execution shouldn’t provide any functionality. Unless the storage access is limited to immutable data and read-only.
Implementations§
source§impl<D> PredicateStorage<D>
impl<D> PredicateStorage<D>
Trait Implementations§
source§impl<D> ContractsAssetsStorage for PredicateStorage<D>
impl<D> ContractsAssetsStorage for PredicateStorage<D>
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<(), Self::Error>
fn contract_asset_id_balance_insert( &mut self, contract: &ContractId, asset_id: &AssetId, value: Word, ) -> Result<(), Self::Error>
Update the balance of an asset ID in a contract storage.
source§fn contract_asset_id_balance_replace(
&mut self,
contract: &ContractId,
asset_id: &AssetId,
value: Word,
) -> Result<Option<Word>, Self::Error>
fn contract_asset_id_balance_replace( &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<D: Debug> Debug for PredicateStorage<D>
impl<D: Debug> Debug for PredicateStorage<D>
source§impl<D: Default> Default for PredicateStorage<D>
impl<D: Default> Default for PredicateStorage<D>
source§fn default() -> PredicateStorage<D>
fn default() -> PredicateStorage<D>
Returns the “default value” for a type. Read more
source§impl<D> InterpreterStorage for PredicateStorage<D>where
D: PredicateStorageRequirements,
impl<D> InterpreterStorage for PredicateStorage<D>where
D: PredicateStorageRequirements,
source§type DataError = PredicateStorageError
type DataError = PredicateStorageError
Error implementation for reasons unspecified in the protocol.
source§fn block_height(&self) -> Result<BlockHeight, Self::DataError>
fn block_height(&self) -> Result<BlockHeight, Self::DataError>
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, Self::DataError>
fn block_hash( &self, _block_height: BlockHeight, ) -> Result<Bytes32, Self::DataError>
Provide the block hash from a given height.
source§fn coinbase(&self) -> Result<ContractId, Self::DataError>
fn coinbase(&self) -> Result<ContractId, Self::DataError>
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,
_hash: &Bytes32,
) -> Result<Option<Bytes32>, Self::DataError>
fn set_state_transition_bytecode( &mut self, _version: u32, _hash: &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,
_: &ContractId,
_: &Bytes32,
_: I,
) -> Result<usize, Self::DataError>
fn contract_state_insert_range<'a, I>( &mut self, _: &ContractId, _: &Bytes32, _: 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<(), Self::DataError>
fn storage_contract_insert( &mut self, id: &ContractId, contract: &Contract, ) -> Result<(), 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<(), Self::DataError>
fn contract_state_insert( &mut self, contract: &ContractId, key: &Bytes32, value: &[u8], ) -> Result<(), Self::DataError>
Insert a key-value mapping in a contract storage.
source§impl<D> StorageInspect<BlobData> for PredicateStorage<D>where
D: PredicateStorageRequirements,
impl<D> StorageInspect<BlobData> for PredicateStorage<D>where
D: PredicateStorageRequirements,
source§impl<Type, D> StorageInspect<Type> for PredicateStorage<D>where
Type: Mappable + NoStorage,
impl<Type, D> StorageInspect<Type> for PredicateStorage<D>where
Type: Mappable + NoStorage,
source§impl<Type, D> StorageMutate<Type> for PredicateStorage<D>
impl<Type, D> StorageMutate<Type> for PredicateStorage<D>
source§fn replace(
&mut self,
_key: &Type::Key,
_value: &Type::Value,
) -> Result<Option<Type::OwnedValue>, Self::Error>
fn replace( &mut self, _key: &Type::Key, _value: &Type::Value, ) -> Result<Option<Type::OwnedValue>, Self::Error>
Append
Key->Value
mapping to the storage. Read moresource§fn take(
&mut self,
_key: &Type::Key,
) -> Result<Option<Type::OwnedValue>, Self::Error>
fn take( &mut self, _key: &Type::Key, ) -> Result<Option<Type::OwnedValue>, Self::Error>
Remove
Key->Value
mapping from the storage. Read moresource§impl<D> StorageRead<BlobData> for PredicateStorage<D>where
D: PredicateStorageRequirements,
impl<D> StorageRead<BlobData> for PredicateStorage<D>where
D: PredicateStorageRequirements,
source§impl<D> StorageRead<ContractsRawCode> for PredicateStorage<D>
impl<D> StorageRead<ContractsRawCode> for PredicateStorage<D>
source§impl<D> StorageRead<ContractsState> for PredicateStorage<D>
impl<D> StorageRead<ContractsState> for PredicateStorage<D>
source§impl<D> StorageSize<BlobData> for PredicateStorage<D>where
D: PredicateStorageRequirements,
impl<D> StorageSize<BlobData> for PredicateStorage<D>where
D: PredicateStorageRequirements,
source§impl<D> StorageSize<ContractsRawCode> for PredicateStorage<D>
impl<D> StorageSize<ContractsRawCode> for PredicateStorage<D>
source§fn size_of_value(&self, _key: &ContractId) -> Result<Option<usize>, Self::Error>
fn size_of_value(&self, _key: &ContractId) -> Result<Option<usize>, Self::Error>
Return the number of bytes stored at this key.
source§impl<D> StorageSize<ContractsState> for PredicateStorage<D>
impl<D> StorageSize<ContractsState> for PredicateStorage<D>
source§fn size_of_value(
&self,
_key: &<ContractsState as Mappable>::Key,
) -> Result<Option<usize>, Self::Error>
fn size_of_value( &self, _key: &<ContractsState as Mappable>::Key, ) -> Result<Option<usize>, Self::Error>
Return the number of bytes stored at this key.
source§impl<D> StorageWrite<BlobData> for PredicateStorage<D>where
D: PredicateStorageRequirements,
impl<D> StorageWrite<BlobData> for PredicateStorage<D>where
D: PredicateStorageRequirements,
source§fn write_bytes(
&mut self,
_key: &<BlobData as Mappable>::Key,
_buf: &[u8],
) -> Result<usize, Self::Error>
fn write_bytes( &mut self, _key: &<BlobData as Mappable>::Key, _buf: &[u8], ) -> Result<usize, Self::Error>
Write the bytes to the given key from the provided buffer. Read more
source§impl<D> StorageWrite<ContractsRawCode> for PredicateStorage<D>
impl<D> StorageWrite<ContractsRawCode> for PredicateStorage<D>
source§fn write_bytes(
&mut self,
_key: &<ContractsRawCode as Mappable>::Key,
_buf: &[u8],
) -> Result<usize, Self::Error>
fn write_bytes( &mut self, _key: &<ContractsRawCode as Mappable>::Key, _buf: &[u8], ) -> Result<usize, Self::Error>
Write the bytes to the given key from the provided buffer. Read more
source§impl<D> StorageWrite<ContractsState> for PredicateStorage<D>
impl<D> StorageWrite<ContractsState> for PredicateStorage<D>
source§fn write_bytes(
&mut self,
_key: &<ContractsState as Mappable>::Key,
_buf: &[u8],
) -> Result<usize, Self::Error>
fn write_bytes( &mut self, _key: &<ContractsState as Mappable>::Key, _buf: &[u8], ) -> Result<usize, Self::Error>
Write the bytes to the given key from the provided buffer. Read more
Auto Trait Implementations§
impl<D> Freeze for PredicateStorage<D>where
D: Freeze,
impl<D> RefUnwindSafe for PredicateStorage<D>where
D: RefUnwindSafe,
impl<D> Send for PredicateStorage<D>where
D: Send,
impl<D> Sync for PredicateStorage<D>where
D: Sync,
impl<D> Unpin for PredicateStorage<D>where
D: Unpin,
impl<D> UnwindSafe for PredicateStorage<D>where
D: UnwindSafe,
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.