Struct bitcoin::p2p::message_compact_blocks::CmpctBlock
source · pub struct CmpctBlock {
pub compact_block: HeaderAndShortIds,
}
Expand description
cmpctblock message
Note that the rules for validation before relaying compact blocks is different from headers and regular block messages. Thus, you shouldn’t use compact blocks when relying on an upstream full node to have validated data being forwarded to you.
Fields§
§compact_block: HeaderAndShortIds
The Compact Block.
Trait Implementations§
source§impl Clone for CmpctBlock
impl Clone for CmpctBlock
source§fn clone(&self) -> CmpctBlock
fn clone(&self) -> CmpctBlock
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CmpctBlock
impl Debug for CmpctBlock
source§impl Decodable for CmpctBlock
impl Decodable for CmpctBlock
source§fn consensus_decode_from_finite_reader<R: Read + ?Sized>(
r: &mut R
) -> Result<CmpctBlock, Error>
fn consensus_decode_from_finite_reader<R: Read + ?Sized>( r: &mut R ) -> Result<CmpctBlock, Error>
Decode
Self
from a size-limited reader. Read moresource§fn consensus_decode<R: Read + ?Sized>(r: &mut R) -> Result<CmpctBlock, Error>
fn consensus_decode<R: Read + ?Sized>(r: &mut R) -> Result<CmpctBlock, Error>
Decode an object with a well-defined format. Read more
source§impl Encodable for CmpctBlock
impl Encodable for CmpctBlock
source§impl Hash for CmpctBlock
impl Hash for CmpctBlock
source§impl Ord for CmpctBlock
impl Ord for CmpctBlock
source§fn cmp(&self, other: &CmpctBlock) -> Ordering
fn cmp(&self, other: &CmpctBlock) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<CmpctBlock> for CmpctBlock
impl PartialEq<CmpctBlock> for CmpctBlock
source§fn eq(&self, other: &CmpctBlock) -> bool
fn eq(&self, other: &CmpctBlock) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<CmpctBlock> for CmpctBlock
impl PartialOrd<CmpctBlock> for CmpctBlock
source§fn partial_cmp(&self, other: &CmpctBlock) -> Option<Ordering>
fn partial_cmp(&self, other: &CmpctBlock) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for CmpctBlock
impl StructuralEq for CmpctBlock
impl StructuralPartialEq for CmpctBlock
Auto Trait Implementations§
impl RefUnwindSafe for CmpctBlock
impl Send for CmpctBlock
impl Sync for CmpctBlock
impl Unpin for CmpctBlock
impl UnwindSafe for CmpctBlock
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