pub struct UtxoDetail {
pub payment_addr: PaymentAddr,
pub stake_addr: Option<String>,
pub tx_hash: String,
pub tx_index: u64,
pub value: String,
}Fields§
§payment_addr: PaymentAddr§stake_addr: Option<String>§tx_hash: String§tx_index: u64§value: StringTrait Implementations§
Source§impl Clone for UtxoDetail
impl Clone for UtxoDetail
Source§fn clone(&self) -> UtxoDetail
fn clone(&self) -> UtxoDetail
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 UtxoDetail
impl Debug for UtxoDetail
Source§impl<'de> Deserialize<'de> for UtxoDetail
impl<'de> Deserialize<'de> for UtxoDetail
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 UtxoDetail
impl RefUnwindSafe for UtxoDetail
impl Send for UtxoDetail
impl Sync for UtxoDetail
impl Unpin for UtxoDetail
impl UnwindSafe for UtxoDetail
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