pub struct DecodeRawTransactionResponse {
pub txid: String,
pub hash: String,
pub size: u64,
pub vsize: u64,
pub version: u64,
pub weight: u64,
pub locktime: u64,
pub vin: Vec<Vin>,
pub vout: Vec<Vout>,
}Fields
txid: Stringhash: Stringsize: u64vsize: u64version: u64weight: u64locktime: u64vin: Vec<Vin>vout: Vec<Vout>Trait Implementations
sourceimpl Debug for DecodeRawTransactionResponse
impl Debug for DecodeRawTransactionResponse
sourceimpl<'de> Deserialize<'de> for DecodeRawTransactionResponse
impl<'de> Deserialize<'de> for DecodeRawTransactionResponse
sourcefn 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 RefUnwindSafe for DecodeRawTransactionResponse
impl Send for DecodeRawTransactionResponse
impl Sync for DecodeRawTransactionResponse
impl Unpin for DecodeRawTransactionResponse
impl UnwindSafe for DecodeRawTransactionResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more