Struct bitcoin::p2p::message_compact_blocks::GetBlockTxn
source · pub struct GetBlockTxn {
pub txs_request: BlockTransactionsRequest,
}
Expand description
getblocktxn message
Fields§
§txs_request: BlockTransactionsRequest
The block transactions request.
Trait Implementations§
source§impl Clone for GetBlockTxn
impl Clone for GetBlockTxn
source§fn clone(&self) -> GetBlockTxn
fn clone(&self) -> GetBlockTxn
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 GetBlockTxn
impl Debug for GetBlockTxn
source§impl Decodable for GetBlockTxn
impl Decodable for GetBlockTxn
source§fn consensus_decode_from_finite_reader<R: Read + ?Sized>(
r: &mut R
) -> Result<GetBlockTxn, Error>
fn consensus_decode_from_finite_reader<R: Read + ?Sized>( r: &mut R ) -> Result<GetBlockTxn, Error>
Decode
Self
from a size-limited reader. Read moresource§fn consensus_decode<R: Read + ?Sized>(r: &mut R) -> Result<GetBlockTxn, Error>
fn consensus_decode<R: Read + ?Sized>(r: &mut R) -> Result<GetBlockTxn, Error>
Decode an object with a well-defined format. Read more
source§impl Encodable for GetBlockTxn
impl Encodable for GetBlockTxn
source§impl Hash for GetBlockTxn
impl Hash for GetBlockTxn
source§impl Ord for GetBlockTxn
impl Ord for GetBlockTxn
source§fn cmp(&self, other: &GetBlockTxn) -> Ordering
fn cmp(&self, other: &GetBlockTxn) -> 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<GetBlockTxn> for GetBlockTxn
impl PartialEq<GetBlockTxn> for GetBlockTxn
source§fn eq(&self, other: &GetBlockTxn) -> bool
fn eq(&self, other: &GetBlockTxn) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<GetBlockTxn> for GetBlockTxn
impl PartialOrd<GetBlockTxn> for GetBlockTxn
source§fn partial_cmp(&self, other: &GetBlockTxn) -> Option<Ordering>
fn partial_cmp(&self, other: &GetBlockTxn) -> 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 GetBlockTxn
impl StructuralEq for GetBlockTxn
impl StructuralPartialEq for GetBlockTxn
Auto Trait Implementations§
impl RefUnwindSafe for GetBlockTxn
impl Send for GetBlockTxn
impl Sync for GetBlockTxn
impl Unpin for GetBlockTxn
impl UnwindSafe for GetBlockTxn
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