pub struct TxOutput {
pub payment_addr: PaymentAddress,
pub stake_addr: Option<String>,
pub tx_hash: String,
pub tx_index: u64,
pub value: String,
}Fields§
§payment_addr: PaymentAddress§stake_addr: Option<String>§tx_hash: String§tx_index: u64§value: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for TxOutput
impl<'de> Deserialize<'de> for TxOutput
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 TxOutput
impl RefUnwindSafe for TxOutput
impl Send for TxOutput
impl Sync for TxOutput
impl Unpin for TxOutput
impl UnwindSafe for TxOutput
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