pub struct DecoderawtransactionResponse {
pub txid: Txid,
pub hash: String,
pub size: u64,
pub vsize: u64,
pub weight: u64,
pub version: u32,
pub locktime: Value,
pub vin: Vec<Value>,
pub vout: Vec<Value>,
}Expand description
Return a JSON object representing the serialized, hex-encoded transaction.
Fields§
§txid: Txid§hash: String§size: u64§vsize: u64§weight: u64§version: u32§locktime: Value§vin: Vec<Value>§vout: Vec<Value>Trait Implementations§
Source§impl Debug for DecoderawtransactionResponse
impl Debug for DecoderawtransactionResponse
Source§impl<'de> Deserialize<'de> for DecoderawtransactionResponse
impl<'de> Deserialize<'de> for DecoderawtransactionResponse
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 DecoderawtransactionResponse
impl RefUnwindSafe for DecoderawtransactionResponse
impl Send for DecoderawtransactionResponse
impl Sync for DecoderawtransactionResponse
impl Unpin for DecoderawtransactionResponse
impl UnwindSafe for DecoderawtransactionResponse
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