pub struct GetTransactionResultDetail {
pub address: Option<Address<NetworkUnchecked>>,
pub category: GetTransactionResultDetailCategory,
pub amount: SignedAmount,
pub label: Option<String>,
pub vout: u32,
pub fee: Option<SignedAmount>,
pub abandoned: Option<bool>,
}
Fields§
§address: Option<Address<NetworkUnchecked>>
§category: GetTransactionResultDetailCategory
§amount: SignedAmount
§label: Option<String>
§vout: u32
§fee: Option<SignedAmount>
§abandoned: Option<bool>
Trait Implementations§
source§impl Clone for GetTransactionResultDetail
impl Clone for GetTransactionResultDetail
source§fn clone(&self) -> GetTransactionResultDetail
fn clone(&self) -> GetTransactionResultDetail
Returns a copy 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 GetTransactionResultDetail
impl Debug for GetTransactionResultDetail
source§impl<'de> Deserialize<'de> for GetTransactionResultDetail
impl<'de> Deserialize<'de> for GetTransactionResultDetail
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
source§impl PartialEq for GetTransactionResultDetail
impl PartialEq for GetTransactionResultDetail
source§fn eq(&self, other: &GetTransactionResultDetail) -> bool
fn eq(&self, other: &GetTransactionResultDetail) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for GetTransactionResultDetail
impl StructuralPartialEq for GetTransactionResultDetail
Auto Trait Implementations§
impl Freeze for GetTransactionResultDetail
impl RefUnwindSafe for GetTransactionResultDetail
impl Send for GetTransactionResultDetail
impl Sync for GetTransactionResultDetail
impl Unpin for GetTransactionResultDetail
impl UnwindSafe for GetTransactionResultDetail
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