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: HeaderAndShortIdsThe Compact Block.
Trait Implementations§
Source§impl Clone for CmpctBlock
impl Clone for CmpctBlock
Source§fn clone(&self) -> CmpctBlock
fn clone(&self) -> CmpctBlock
Returns a duplicate 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 for CmpctBlock
impl PartialEq for CmpctBlock
Source§impl PartialOrd for CmpctBlock
impl PartialOrd for CmpctBlock
impl 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