Enum bdk_chain::bitcoin::p2p::message_blockdata::Inventory
pub enum Inventory {
Error,
Transaction(Txid),
Block(BlockHash),
CompactBlock(BlockHash),
WTx(Wtxid),
WitnessTransaction(Txid),
WitnessBlock(BlockHash),
Unknown {
inv_type: u32,
hash: [u8; 32],
},
}
Expand description
An inventory item.
Variants§
Error
Error — these inventories can be ignored
Transaction(Txid)
Transaction
Block(BlockHash)
Block
CompactBlock(BlockHash)
Compact Block
WTx(Wtxid)
Witness Transaction by Wtxid
WitnessTransaction(Txid)
Witness Transaction
WitnessBlock(BlockHash)
Witness Block
Unknown
Unknown inventory type
Implementations§
§impl Inventory
impl Inventory
pub fn network_hash(&self) -> Option<[u8; 32]>
pub fn network_hash(&self) -> Option<[u8; 32]>
Return the item value represented as a SHA256-d hash.
Returns None only for Inventory::Error.
Trait Implementations§
§impl Ord for Inventory
impl Ord for Inventory
§impl PartialOrd for Inventory
impl PartialOrd for Inventory
§fn partial_cmp(&self, other: &Inventory) -> Option<Ordering>
fn partial_cmp(&self, other: &Inventory) -> 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 Copy for Inventory
impl Eq for Inventory
impl StructuralPartialEq for Inventory
Auto Trait Implementations§
impl Freeze for Inventory
impl RefUnwindSafe for Inventory
impl Send for Inventory
impl Sync for Inventory
impl Unpin for Inventory
impl UnwindSafe for Inventory
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