pub struct ListReceivedByAddressResult {
pub involved_watch_only: bool,
pub address: Address<NetworkUnchecked>,
pub amount: Amount,
pub confirmations: u32,
pub label: String,
pub txids: Vec<Txid>,
}
Fields§
§involved_watch_only: bool
§address: Address<NetworkUnchecked>
§amount: Amount
§confirmations: u32
§label: String
§txids: Vec<Txid>
Trait Implementations§
source§impl Clone for ListReceivedByAddressResult
impl Clone for ListReceivedByAddressResult
source§fn clone(&self) -> ListReceivedByAddressResult
fn clone(&self) -> ListReceivedByAddressResult
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 ListReceivedByAddressResult
impl Debug for ListReceivedByAddressResult
source§impl<'de> Deserialize<'de> for ListReceivedByAddressResult
impl<'de> Deserialize<'de> for ListReceivedByAddressResult
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 ListReceivedByAddressResult
impl PartialEq for ListReceivedByAddressResult
source§fn eq(&self, other: &ListReceivedByAddressResult) -> bool
fn eq(&self, other: &ListReceivedByAddressResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ListReceivedByAddressResult
impl StructuralPartialEq for ListReceivedByAddressResult
Auto Trait Implementations§
impl Freeze for ListReceivedByAddressResult
impl RefUnwindSafe for ListReceivedByAddressResult
impl Send for ListReceivedByAddressResult
impl Sync for ListReceivedByAddressResult
impl Unpin for ListReceivedByAddressResult
impl UnwindSafe for ListReceivedByAddressResult
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