pub struct TxidFromPosRes {
pub tx_hash: Txid,
pub merkle: Vec<[u8; 32]>,
}
Expand description
Response to a txid_from_pos_with_merkle
request.
Fields§
§tx_hash: Txid
Txid of the transaction.
merkle: Vec<[u8; 32]>
The merkle path of the transaction.
Trait Implementations§
Source§impl Clone for TxidFromPosRes
impl Clone for TxidFromPosRes
Source§fn clone(&self) -> TxidFromPosRes
fn clone(&self) -> TxidFromPosRes
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 TxidFromPosRes
impl Debug for TxidFromPosRes
Source§impl<'de> Deserialize<'de> for TxidFromPosRes
impl<'de> Deserialize<'de> for TxidFromPosRes
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TxidFromPosRes
impl RefUnwindSafe for TxidFromPosRes
impl Send for TxidFromPosRes
impl Sync for TxidFromPosRes
impl Unpin for TxidFromPosRes
impl UnwindSafe for TxidFromPosRes
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