pub struct AddressUtxo {
pub txid: String,
pub vout: u32,
pub value: u64,
pub status: TxStatus,
}Expand description
Address UTXO response
Fields§
§txid: String§vout: u32§value: u64§status: TxStatusTrait Implementations§
Source§impl Clone for AddressUtxo
impl Clone for AddressUtxo
Source§fn clone(&self) -> AddressUtxo
fn clone(&self) -> AddressUtxo
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 AddressUtxo
impl Debug for AddressUtxo
Source§impl<'de> Deserialize<'de> for AddressUtxo
impl<'de> Deserialize<'de> for AddressUtxo
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 AddressUtxo
impl RefUnwindSafe for AddressUtxo
impl Send for AddressUtxo
impl Sync for AddressUtxo
impl Unpin for AddressUtxo
impl UnsafeUnpin for AddressUtxo
impl UnwindSafe for AddressUtxo
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