GenericDatabase

Struct GenericDatabase 

Source
pub struct GenericDatabase<Storage, Metadata> { /* private fields */ }

Implementations§

Source§

impl GenericDatabase<IterableKeyValueViewWrapper<<OffChain as DatabaseDescription>::Column>, <OffChain as DatabaseDescription>::Height>

Source§

impl GenericDatabase<IterableKeyValueViewWrapper<<OnChain as DatabaseDescription>::Column>, <OnChain as DatabaseDescription>::Height>

Source

pub fn latest_compressed_block(&self) -> StorageResult<Option<CompressedBlock>>

Source

pub fn get_current_block(&self) -> StorageResult<Option<CompressedBlock>>

Get the current block at the head of the chain.

Source

pub fn get_full_block( &self, height: &BlockHeight, ) -> StorageResult<Option<Block>>

Retrieve the full block and all associated transactions

Source§

impl GenericDatabase<IterableKeyValueViewWrapper<<OnChain as DatabaseDescription>::Column>, <OnChain as DatabaseDescription>::Height>

Source

pub fn block_history_proof( &self, message_block_height: &BlockHeight, commit_block_height: &BlockHeight, ) -> StorageResult<MerkleProof>

Source§

impl GenericDatabase<IterableKeyValueViewWrapper<<OffChain as DatabaseDescription>::Column>, <OffChain as DatabaseDescription>::Height>

Source

pub fn owned_coins_ids( &self, owner: &Address, start_coin: Option<UtxoId>, direction: Option<IterDirection>, ) -> impl Iterator<Item = StorageResult<UtxoId>> + '_ + use<'_>

Source§

impl GenericDatabase<IterableKeyValueViewWrapper<<OnChain as DatabaseDescription>::Column>, <OnChain as DatabaseDescription>::Height>

Source

pub fn coin(&self, utxo_id: &UtxoId) -> StorageResult<CompressedCoin>

Source§

impl GenericDatabase<IterableKeyValueViewWrapper<<OnChain as DatabaseDescription>::Column>, <OnChain as DatabaseDescription>::Height>

Source§

impl GenericDatabase<DataSource<OnChain, GenesisStage>, Empty>

Source§

impl GenericDatabase<IterableKeyValueViewWrapper<<OffChain as DatabaseDescription>::Column>, <OffChain as DatabaseDescription>::Height>

Source

pub fn owned_message_ids( &self, owner: &Address, start_message_id: Option<Nonce>, direction: Option<IterDirection>, ) -> impl Iterator<Item = StorageResult<Nonce>> + '_ + use<'_>

Source

pub fn message_is_spent(&self, id: &Nonce) -> StorageResult<bool>

Source§

impl GenericDatabase<IterableKeyValueViewWrapper<<OnChain as DatabaseDescription>::Column>, <OnChain as DatabaseDescription>::Height>

Source

pub fn all_messages( &self, start: Option<Nonce>, direction: Option<IterDirection>, ) -> impl Iterator<Item = StorageResult<Message>> + '_

Source

pub fn iter_messages( &self, ) -> impl Iterator<Item = StorageResult<TableEntry<Messages>>> + '_

Source

pub fn message_exists(&self, id: &Nonce) -> StorageResult<bool>

Source§

impl<Description, Stage> GenericDatabase<DataSource<Description, Stage>, Empty>
where Description: DatabaseDescription, Self: StorageInspect<MetadataTable<Description>, Error = Error>,

Source

pub fn check_version(&self) -> StorageResult<()>

Ensures the version is correct.

Source

pub fn latest_height_from_metadata( &self, ) -> StorageResult<Option<Description::Height>>

Source

pub fn indexation_available(&self, kind: IndexationKind) -> StorageResult<bool>

Source§

impl GenericDatabase<IterableKeyValueViewWrapper<<OnChain as DatabaseDescription>::Column>, <OnChain as DatabaseDescription>::Height>

Source

pub fn get_sealed_block_by_height( &self, height: &BlockHeight, ) -> StorageResult<Option<SealedBlock>>

Returns SealedBlock by height. Reusable across different trait implementations

Source

pub fn genesis_height(&self) -> StorageResult<Option<BlockHeight>>

Source

pub fn genesis_block(&self) -> StorageResult<Option<CompressedBlock>>

Source

pub fn get_genesis(&self) -> StorageResult<Genesis>

Source

pub fn get_sealed_block_headers( &self, block_height_range: Range<u32>, ) -> StorageResult<Option<Vec<SealedBlockHeader>>>

Source

pub fn get_sealed_block_header( &self, height: &BlockHeight, ) -> StorageResult<Option<SealedBlockHeader>>

Source

pub fn get_transactions_on_blocks( &self, block_height_range: Range<u32>, ) -> StorageResult<Option<Vec<Transactions>>>

Source§

impl GenericDatabase<IterableKeyValueViewWrapper<<OffChain as DatabaseDescription>::Column>, <OffChain as DatabaseDescription>::Height>

Source

pub fn owned_transactions( &self, owner: Address, start: Option<OwnedTransactionIndexCursor>, direction: Option<IterDirection>, ) -> impl Iterator<Item = StorageResult<(TxPointer, Bytes32)>> + '_

Iterates over a KV mapping of [address + block height + tx idx] => transaction id. This allows for efficient lookup of transaction ids associated with an address, sorted by block age and ordering within a block. The cursor tracks the [block height + tx idx] for pagination purposes.

Source

pub fn get_tx_status( &self, id: &Bytes32, ) -> StorageResult<Option<TransactionExecutionStatus>>

Source§

impl GenericDatabase<IterableKeyValueViewWrapper<<OnChain as DatabaseDescription>::Column>, <OnChain as DatabaseDescription>::Height>

Source§

impl<DbDesc> GenericDatabase<DataSource<DbDesc, RegularStage<DbDesc>>, Empty>
where DbDesc: DatabaseDescription,

Source

pub fn entries<'a, T>( &'a self, prefix: Option<Vec<u8>>, direction: IterDirection, ) -> impl Iterator<Item = StorageResult<TableEntry<T>>> + 'a
where T: Mappable + 'a, Self: IterableTable<T>,

Source

pub fn shutdown(self)

Source§

impl<Description> GenericDatabase<DataSource<Description, GenesisStage>, Empty>
where Description: DatabaseDescription,

Source

pub fn new(data_source: DataSourceType<Description>) -> Self

Source§

impl<Description> GenericDatabase<DataSource<Description, RegularStage<Description>>, Empty>
where Description: DatabaseDescription, Database<Description>: StorageInspect<MetadataTable<Description>, Error = Error>,

Source

pub fn new(data_source: DataSourceType<Description>) -> Self

Source

pub fn open_rocksdb( path: &Path, state_rewind_policy: StateRewindPolicy, database_config: DatabaseConfig, ) -> Result<Self>

Source

pub fn into_genesis( self, ) -> Result<GenesisDatabase<Description>, GenesisDatabase<Description>>

Converts the regular database to an unchecked database.

Returns an error in the case regular database is initialized with the GenesisDatabase, to highlight that it is a bad idea and it is unsafe.

Source§

impl<Description, Stage> GenericDatabase<DataSource<Description, Stage>, Empty>
where Description: DatabaseDescription, Stage: Default,

Source

pub fn in_memory() -> Self

Source

pub fn rocksdb_temp( state_rewind_policy: StateRewindPolicy, database_config: DatabaseConfig, ) -> Result<Self>

Source§

impl<Description> GenericDatabase<DataSource<Description, RegularStage<Description>>, Empty>
where Description: DatabaseDescription,

Source§

impl<Storage, Metadata> GenericDatabase<Storage, Metadata>

Source

pub fn inner_storage(&self) -> &Storage

Source

pub fn metadata(&self) -> Option<&Metadata>

Source

pub fn from_storage_and_metadata( storage: Storage, metadata: Option<Metadata>, ) -> Self

Source

pub fn into_inner(self) -> (Storage, Option<Metadata>)

Source§

impl<Column, Height> GenericDatabase<IterableKeyValueViewWrapper<Column>, Height>
where Column: StorageColumn + 'static,

Source

pub fn into_key_value_view(self) -> KeyValueView<Column, Height>

Downgrades the IterableKeyValueView into the KeyValueView.

Trait Implementations§

Source§

impl<Storage, Metadata> AsMut<Storage> for GenericDatabase<Storage, Metadata>

Source§

fn as_mut(&mut self) -> &mut Storage

Converts this type into a mutable reference of the (usually inferred) input type.
Source§

impl<Storage, Metadata> AsRef<Storage> for GenericDatabase<Storage, Metadata>

Source§

fn as_ref(&self) -> &Storage

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<Storage: Clone, Metadata: Clone> Clone for GenericDatabase<Storage, Metadata>

Source§

fn clone(&self) -> GenericDatabase<Storage, Metadata>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<Storage: Debug, Metadata: Debug> Debug for GenericDatabase<Storage, Metadata>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<Storage, Metadata> Deref for GenericDatabase<Storage, Metadata>

Source§

type Target = Storage

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<Storage, Metadata> DerefMut for GenericDatabase<Storage, Metadata>

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
Source§

impl<Storage, Metadata> IterableStore for GenericDatabase<Storage, Metadata>
where Storage: IterableStore,

Source§

fn iter_store( &self, column: Self::Column, prefix: Option<&[u8]>, start: Option<&[u8]>, direction: IterDirection, ) -> BoxedIter<'_, KVItem>

Returns an iterator over the values in the storage.
Source§

fn iter_store_keys( &self, column: Self::Column, prefix: Option<&[u8]>, start: Option<&[u8]>, direction: IterDirection, ) -> BoxedIter<'_, KeyItem>

Returns an iterator over keys in the storage.
Source§

impl<Storage, Metadata> KeyValueInspect for GenericDatabase<Storage, Metadata>
where Storage: KeyValueInspect,

Source§

type Column = <Storage as KeyValueInspect>::Column

The type of the column.
Source§

fn exists(&self, key: &[u8], column: Self::Column) -> StorageResult<bool>

Checks if the value exists in the storage.
Source§

fn size_of_value( &self, key: &[u8], column: Self::Column, ) -> StorageResult<Option<usize>>

Returns the size of the value in the storage.
Source§

fn get(&self, key: &[u8], column: Self::Column) -> StorageResult<Option<Value>>

Returns the value from the storage.
Source§

fn read( &self, key: &[u8], column: Self::Column, offset: usize, buf: &mut [u8], ) -> StorageResult<bool>

Reads the value from the storage into the buf and returns the whether the value exists.
Source§

impl<Key, M, Storage, Metadata> MerkleRootStorage<Key, M> for GenericDatabase<Storage, Metadata>
where M: Mappable, StructuredStorage<Storage>: MerkleRootStorage<Key, M, Error = Error>,

Source§

fn root(&self, key: &Key) -> Result<MerkleRoot, Self::Error>

Return the merkle root of the stored Type in the storage. Read more
Source§

impl<Storage, Error, Metadata> PredicateStorageRequirements for GenericDatabase<Storage, Metadata>
where Self: StorageRead<BlobData, Error = Error>, Error: Debug,

Source§

fn storage_error_to_string(error: Error) -> String

Converts the storage error to a string.
Source§

impl<M, Storage, Metadata> StorageInspect<M> for GenericDatabase<Storage, Metadata>
where M: Mappable, StructuredStorage<Storage>: StorageInspect<M, Error = Error>,

Source§

type Error = Error

Source§

fn get( &self, key: &M::Key, ) -> Result<Option<Cow<'_, M::OwnedValue>>, Self::Error>

Retrieve Cow<Value> such as Key->Value.
Source§

fn contains_key(&self, key: &M::Key) -> Result<bool, Self::Error>

Return true if there is a Key mapping to a value in the storage.
Source§

impl<M, Storage, Metadata> StorageRead<M> for GenericDatabase<Storage, Metadata>
where M: Mappable, StructuredStorage<Storage>: StorageRead<M, Error = Error>,

Source§

fn read( &self, key: &M::Key, offset: usize, buf: &mut [u8], ) -> Result<bool, Self::Error>

Read the value stored at the given key into the provided buffer if the value exists. Errors if the buffer cannot be filled completely, or if attempting to read past the end of the value. Read more
Source§

fn read_alloc(&self, key: &M::Key) -> Result<Option<Vec<u8>>, Self::Error>

Same as read but allocates a new buffer and returns it. Read more
Source§

impl<M, Storage, Metadata> StorageSize<M> for GenericDatabase<Storage, Metadata>
where M: Mappable, StructuredStorage<Storage>: StorageSize<M, Error = Error>,

Source§

fn size_of_value(&self, key: &M::Key) -> Result<Option<usize>, Self::Error>

Return the number of bytes stored at this key.

Auto Trait Implementations§

§

impl<Storage, Metadata> Freeze for GenericDatabase<Storage, Metadata>
where Storage: Freeze, Metadata: Freeze,

§

impl<Storage, Metadata> RefUnwindSafe for GenericDatabase<Storage, Metadata>
where Storage: RefUnwindSafe, Metadata: RefUnwindSafe,

§

impl<Storage, Metadata> Send for GenericDatabase<Storage, Metadata>
where Storage: Send, Metadata: Send,

§

impl<Storage, Metadata> Sync for GenericDatabase<Storage, Metadata>
where Storage: Sync, Metadata: Sync,

§

impl<Storage, Metadata> Unpin for GenericDatabase<Storage, Metadata>
where Storage: Unpin, Metadata: Unpin,

§

impl<Storage, Metadata> UnwindSafe for GenericDatabase<Storage, Metadata>
where Storage: UnwindSafe, Metadata: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AnyDebug for T
where T: Any + Debug,

Source§

fn as_any_ref(&self) -> &(dyn Any + 'static)

Returns a reference to the underlying type as Any.
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<D, E> ContractStorageTrait for D
where D: StorageInspect<ContractsLatestUtxo, Error = E>, E: Debug + Display + Send + Sync + 'static,

Source§

impl<T> Conv for T

Source§

fn conv<T>(self) -> T
where Self: Into<T>,

Converts self into T using Into<T>. Read more
Source§

impl<T, Ctx, Decompressed> Decompress<Decompressed, Ctx> for T
where Ctx: ContextError, Decompressed: DecompressibleBy<Ctx, Compressed = T>,

Source§

async fn decompress( self, ctx: &Ctx, ) -> Result<Decompressed, <Ctx as ContextError>::Error>

Perform decompression, returning the original data.
Source§

impl<T> FmtForward for T

Source§

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,

Causes self to use its Display implementation when Debug-formatted.
Source§

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,

Causes self to use its LowerHex implementation when Debug-formatted.
Source§

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,

Causes self to use its Pointer implementation when Debug-formatted.
Source§

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,

Causes self to use its UpperHex implementation when Debug-formatted.
Source§

fn fmt_list(self) -> FmtList<Self>
where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<Storage> GasPriceServiceAtomicStorage for Storage

Source§

impl<S, DbDesc> GenesisProgressInspect<DbDesc> for S
where S: StorageInspect<GenesisMetadata<DbDesc>, Error = Error>, DbDesc: DatabaseDescription,

Source§

fn genesis_progress( &self, key: &<GenesisMetadata<DbDesc> as Mappable>::Key, ) -> Option<usize>

Source§

impl<Storage> GetLatestRecordedHeight for Storage
where Storage: Send + Sync + StorageInspect<RecordedHeights, Error = Error>,

Source§

fn get_recorded_height(&self) -> Result<Option<BlockHeight>, Error>

Get the most recent L2 block that has been committed to DA
Source§

impl<Storage> GetMetadataStorage for Storage
where Storage: Send + Sync + StorageInspect<GasPriceMetadata, Error = Error>,

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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 more
Source§

impl<S> IntoTransaction for S
where S: KeyValueInspect,

Source§

fn into_transaction(self) -> StructuredStorage<InMemoryTransaction<S>>

Converts the type into the storage transaction consuming it.
Source§

impl<Column, M, S> IterableTable<M> for S
where M: TableWithBlueprint<Column = Column>, <M as TableWithBlueprint>::Blueprint: BlueprintInspect<M, S>, S: IterableStore<Column = Column>,

Source§

fn iter_table_keys<P>( &self, prefix: Option<P>, start: Option<&<M as Mappable>::Key>, direction: Option<IterDirection>, ) -> BoxedIter<'_, Result<<M as Mappable>::OwnedKey, Error>>
where P: AsRef<[u8]>,

Returns an iterator over the all keys in the table with a prefix after a specific start key.
Source§

fn iter_table<P>( &self, prefix: Option<P>, start: Option<&<M as Mappable>::Key>, direction: Option<IterDirection>, ) -> BoxedIter<'_, Result<(<M as Mappable>::OwnedKey, <M as Mappable>::OwnedValue), Error>>
where P: AsRef<[u8]>,

Returns an iterator over the all entries in the table with a prefix after a specific start key.
Source§

impl<S> IteratorOverTable for S

Source§

fn iter_all_keys<M>( &self, direction: Option<IterDirection>, ) -> BoxedIter<'_, Result<<M as Mappable>::OwnedKey, Error>>
where M: Mappable, Self: IterableTable<M>,

Returns an iterator over the all keys in the table.
Source§

fn iter_all_by_prefix_keys<M, P>( &self, prefix: Option<P>, ) -> BoxedIter<'_, Result<<M as Mappable>::OwnedKey, Error>>
where M: Mappable, P: AsRef<[u8]>, Self: IterableTable<M>,

Returns an iterator over the all keys in the table with the specified prefix.
Source§

fn iter_all_by_start_keys<M>( &self, start: Option<&<M as Mappable>::Key>, direction: Option<IterDirection>, ) -> BoxedIter<'_, Result<<M as Mappable>::OwnedKey, Error>>
where M: Mappable, Self: IterableTable<M>,

Returns an iterator over the all keys in the table after a specific start key.
Source§

fn iter_all_filtered_keys<M, P>( &self, prefix: Option<P>, start: Option<&<M as Mappable>::Key>, direction: Option<IterDirection>, ) -> BoxedIter<'_, Result<<M as Mappable>::OwnedKey, Error>>
where M: Mappable, P: AsRef<[u8]>, Self: IterableTable<M>,

Returns an iterator over the all keys in the table with a prefix after a specific start key.
Source§

fn iter_all<M>( &self, direction: Option<IterDirection>, ) -> BoxedIter<'_, Result<(<M as Mappable>::OwnedKey, <M as Mappable>::OwnedValue), Error>>
where M: Mappable, Self: IterableTable<M>,

Returns an iterator over the all entries in the table.
Source§

fn iter_all_by_prefix<M, P>( &self, prefix: Option<P>, ) -> BoxedIter<'_, Result<(<M as Mappable>::OwnedKey, <M as Mappable>::OwnedValue), Error>>
where M: Mappable, P: AsRef<[u8]>, Self: IterableTable<M>,

Returns an iterator over the all entries in the table with the specified prefix.
Source§

fn iter_all_by_start<M>( &self, start: Option<&<M as Mappable>::Key>, direction: Option<IterDirection>, ) -> BoxedIter<'_, Result<(<M as Mappable>::OwnedKey, <M as Mappable>::OwnedValue), Error>>
where M: Mappable, Self: IterableTable<M>,

Returns an iterator over the all entries in the table after a specific start key.
Source§

fn iter_all_filtered<M, P>( &self, prefix: Option<P>, start: Option<&<M as Mappable>::Key>, direction: Option<IterDirection>, ) -> BoxedIter<'_, Result<(<M as Mappable>::OwnedKey, <M as Mappable>::OwnedValue), Error>>
where M: Mappable, P: AsRef<[u8]>, Self: IterableTable<M>,

Returns an iterator over the all entries in the table with a prefix after a specific start key.
Source§

impl<T> Pipe for T
where T: ?Sized,

Source§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
where 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) -> R
where R: 'a,

Borrows self and passes that borrow into the pipe function. Read more
Source§

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R
where R: 'a,

Mutably borrows self and passes that borrow into the pipe function. Read more
Source§

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
where Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

Borrows self, then passes self.borrow() into the pipe function. Read more
Source§

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
where Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
Source§

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
where Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

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
where Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

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
where Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

Borrows self, then passes self.deref() into the pipe function.
Source§

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R, ) -> R
where Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.deref_mut() into the pipe function.
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<S> ReadTransaction for S
where S: KeyValueInspect,

Source§

fn read_transaction(&self) -> StructuredStorage<InMemoryTransaction<&S>>

Returns the read transaction without ability to commit the changes.
Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<Storage> SetMetadataStorage for Storage

Source§

fn set_metadata(&mut self, metadata: &UpdaterMetadata) -> Result<(), Error>

Source§

impl<T> StorageAsMut for T

Source§

fn storage<Type>(&mut self) -> StorageMut<'_, Self, Type>
where Type: Mappable,

Source§

fn storage_as_mut<Type>(&mut self) -> StorageMut<'_, Self, Type>
where Type: Mappable,

Source§

impl<T> StorageAsRef for T

Source§

fn storage<Type>(&self) -> StorageRef<'_, Self, Type>
where Type: Mappable,

Source§

fn storage_as_ref<Type>(&self) -> StorageRef<'_, Self, Type>
where Type: Mappable,

Source§

impl<T> Tap for T

Source§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
Source§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
Source§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Immutable access to the Borrow<B> of a value. Read more
Source§

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Mutable access to the BorrowMut<B> of a value. Read more
Source§

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Immutable access to the AsRef<R> view of a value. Read more
Source§

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Mutable access to the AsMut<R> view of a value. Read more
Source§

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Immutable access to the Deref::Target of a value. Read more
Source§

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Mutable access to the Deref::Target of a value. Read more
Source§

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

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
where Self: Borrow<B>, B: ?Sized,

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
where Self: BorrowMut<B>, B: ?Sized,

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
where Self: AsRef<R>, R: ?Sized,

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
where Self: AsMut<R>, R: ?Sized,

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
where Self: Deref<Target = T>, T: ?Sized,

Calls .tap_deref() only in debug builds, and is erased in release builds.
Source§

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<S> Transactional for S
where S: KeyValueInspect<Column = Column>,

Source§

type Transaction<'a> = StructuredStorage<InMemoryTransaction<&'a S>> where S: 'a

The type of the storage transaction;
Source§

fn storage_transaction( &self, changes: HashMap<u32, BTreeMap<ReferenceBytesKey, WriteOperation>>, ) -> <S as Transactional>::Transaction<'_>

Returns the storage transaction based on the Changes.
Source§

impl<T> TryConv for T

Source§

fn try_conv<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Attempts to convert self into T using TryInto<T>. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<S> WriteTransaction for S

Source§

fn write_transaction( &mut self, ) -> StructuredStorage<InMemoryTransaction<&mut S>>

Returns the write transaction that can commit the changes.
Source§

impl<T> CompressionStorage for T

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> Formattable for T
where T: Deref, <T as Deref>::Target: Formattable,

Source§

impl<M> Memory for M

Source§

impl<T> Parsable for T
where T: Deref, <T as Deref>::Target: Parsable,