#[repr(u16)]pub enum DbTableId {
BlockHeader = 0,
BlockBody = 1,
ApprovalsHashes = 2,
BlockMetadata = 3,
Transaction = 4,
ExecutionResult = 5,
Transfer = 6,
FinalizedTransactionApprovals = 7,
}Expand description
An identifier of db tables.
Variants§
BlockHeader = 0
Refers to BlockHeader db table.
BlockBody = 1
Refers to BlockBody db table.
ApprovalsHashes = 2
Refers to ApprovalsHashes db table.
BlockMetadata = 3
Refers to BlockMetadata db table.
Transaction = 4
Refers to Transaction db table.
ExecutionResult = 5
Refers to ExecutionResult db table.
Transfer = 6
Refers to Transfer db table.
FinalizedTransactionApprovals = 7
Refers to FinalizedTransactionApprovals db table.
Trait Implementations§
impl Copy for DbTableId
impl Eq for DbTableId
impl StructuralPartialEq for DbTableId
Auto Trait Implementations§
impl Freeze for DbTableId
impl RefUnwindSafe for DbTableId
impl Send for DbTableId
impl Sync for DbTableId
impl Unpin for DbTableId
impl UnwindSafe for DbTableId
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 more