pub struct BestBlock {
pub block_hash: BlockHash,
pub height: u32,
}Expand description
The best known block as identified by its hash and height.
Fields§
§block_hash: BlockHashThe block’s hash
height: u32The height at which the block was confirmed.
Implementations§
Trait Implementations§
Source§impl Writeable for BestBlock
impl Writeable for BestBlock
impl Copy for BestBlock
impl Eq for BestBlock
impl StructuralPartialEq for BestBlock
Auto Trait Implementations§
impl Freeze for BestBlock
impl RefUnwindSafe for BestBlock
impl Send for BestBlock
impl Sync for BestBlock
impl Unpin for BestBlock
impl UnwindSafe for BestBlock
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<T> LengthReadable for Twhere
T: Readable,
impl<T> LengthReadable for Twhere
T: Readable,
Source§fn read_from_fixed_length_buffer<R>(reader: &mut R) -> Result<T, DecodeError>where
R: LengthLimitedRead,
fn read_from_fixed_length_buffer<R>(reader: &mut R) -> Result<T, DecodeError>where
R: LengthLimitedRead,
Reads a
Self in from the given LengthLimitedRead.