Struct bdk_chain::bitcoin::p2p::message_compact_blocks::CmpctBlock
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§
§impl Clone for CmpctBlock
impl Clone for CmpctBlock
§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 more§impl Debug for CmpctBlock
impl Debug for CmpctBlock
§impl Decodable for CmpctBlock
impl Decodable for CmpctBlock
§fn consensus_decode_from_finite_reader<R>(
r: &mut R
) -> Result<CmpctBlock, Error>
fn consensus_decode_from_finite_reader<R>( r: &mut R ) -> Result<CmpctBlock, Error>
Decode
Self
from a size-limited reader. Read more§fn consensus_decode<R>(r: &mut R) -> Result<CmpctBlock, Error>
fn consensus_decode<R>(r: &mut R) -> Result<CmpctBlock, Error>
Decode an object with a well-defined format. Read more
§impl Encodable for CmpctBlock
impl Encodable for CmpctBlock
§impl Hash for CmpctBlock
impl Hash for CmpctBlock
§impl Ord for CmpctBlock
impl Ord for CmpctBlock
§impl PartialEq for CmpctBlock
impl PartialEq for CmpctBlock
§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 ==
.§impl PartialOrd for CmpctBlock
impl PartialOrd for CmpctBlock
§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 StructuralPartialEq for CmpctBlock
Auto Trait Implementations§
impl Freeze for CmpctBlock
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more