Struct fuel_core_storage::tables::SealedBlockConsensus
source · pub struct SealedBlockConsensus;
Expand description
The table of consensus metadata associated with sealed (finalized) blocks
Trait Implementations§
source§impl Mappable for SealedBlockConsensus
impl Mappable for SealedBlockConsensus
§type Key = <SealedBlockConsensus as Mappable>::OwnedKey
type Key = <SealedBlockConsensus as Mappable>::OwnedKey
The key type is used during interaction with the storage. In most cases, it is the same
as
Self::OwnedKey
.§type Value = <SealedBlockConsensus as Mappable>::OwnedValue
type Value = <SealedBlockConsensus as Mappable>::OwnedValue
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 = Consensus
type OwnedValue = Consensus
The owned type of the
Value
retrieving from the storage.Auto Trait Implementations§
impl RefUnwindSafe for SealedBlockConsensus
impl Send for SealedBlockConsensus
impl Sync for SealedBlockConsensus
impl Unpin for SealedBlockConsensus
impl UnwindSafe for SealedBlockConsensus
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