pub struct GetTransactionResultDetail {
pub address: Option<Address>,
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>
category: GetTransactionResultDetailCategory
amount: SignedAmount
label: Option<String>
vout: u32
fee: Option<SignedAmount>
abandoned: Option<bool>
Trait Implementations
sourceimpl Clone for GetTransactionResultDetail
impl Clone for GetTransactionResultDetail
sourcefn clone(&self) -> GetTransactionResultDetail
fn clone(&self) -> GetTransactionResultDetail
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GetTransactionResultDetail
impl Debug for GetTransactionResultDetail
sourceimpl<'de> Deserialize<'de> for GetTransactionResultDetail
impl<'de> Deserialize<'de> for GetTransactionResultDetail
sourcefn 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
sourceimpl PartialEq<GetTransactionResultDetail> for GetTransactionResultDetail
impl PartialEq<GetTransactionResultDetail> for GetTransactionResultDetail
sourcefn 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 ==
. Read more
impl Eq for GetTransactionResultDetail
impl StructuralEq for GetTransactionResultDetail
impl StructuralPartialEq for GetTransactionResultDetail
Auto Trait Implementations
impl RefUnwindSafe for GetTransactionResultDetail
impl Send for GetTransactionResultDetail
impl Sync for GetTransactionResultDetail
impl Unpin for GetTransactionResultDetail
impl UnwindSafe for GetTransactionResultDetail
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more