pub struct GetRawTransactionVerbosityOne {
pub in_active_chain: Option<bool>,
pub transaction: Transaction,
pub txid: Txid,
pub hash: Wtxid,
pub size: usize,
pub vsize: usize,
pub version: u32,
pub locktime: u32,
pub blockhash: Option<BlockHash>,
pub confirmations: Option<u32>,
pub time: Option<usize>,
pub blocktime: Option<usize>,
}
Expand description
Result of JSON-RPC method getrawtransaction
with verbosity set to 1.
Method call: getrawtransaction "txid" ( verbosity )
Fields§
§in_active_chain: Option<bool>
§transaction: Transaction
§txid: Txid
§hash: Wtxid
§size: usize
§vsize: usize
§version: u32
§locktime: u32
§blockhash: Option<BlockHash>
§confirmations: Option<u32>
§time: Option<usize>
§blocktime: Option<usize>
Trait Implementations§
Source§impl Clone for GetRawTransactionVerbosityOne
impl Clone for GetRawTransactionVerbosityOne
Source§fn clone(&self) -> GetRawTransactionVerbosityOne
fn clone(&self) -> GetRawTransactionVerbosityOne
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<'de> Deserialize<'de> for GetRawTransactionVerbosityOne
impl<'de> Deserialize<'de> for GetRawTransactionVerbosityOne
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
Source§impl PartialEq for GetRawTransactionVerbosityOne
impl PartialEq for GetRawTransactionVerbosityOne
Source§fn eq(&self, other: &GetRawTransactionVerbosityOne) -> bool
fn eq(&self, other: &GetRawTransactionVerbosityOne) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for GetRawTransactionVerbosityOne
impl StructuralPartialEq for GetRawTransactionVerbosityOne
Auto Trait Implementations§
impl Freeze for GetRawTransactionVerbosityOne
impl RefUnwindSafe for GetRawTransactionVerbosityOne
impl Send for GetRawTransactionVerbosityOne
impl Sync for GetRawTransactionVerbosityOne
impl Unpin for GetRawTransactionVerbosityOne
impl UnwindSafe for GetRawTransactionVerbosityOne
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.