pub struct BitcoinBalance {
pub address: String,
pub balance: u64,
pub unconfirmed: i64,
pub total_received: u64,
pub total_sent: u64,
pub tx_count: u64,
}Expand description
Bitcoin balance result
Fields§
§address: StringThe address checked
balance: u64Confirmed balance in satoshis
unconfirmed: i64Unconfirmed balance in satoshis
total_received: u64Total received in satoshis
total_sent: u64Total sent in satoshis
tx_count: u64Number of transactions
Trait Implementations§
Source§impl Clone for BitcoinBalance
impl Clone for BitcoinBalance
Source§fn clone(&self) -> BitcoinBalance
fn clone(&self) -> BitcoinBalance
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 moreAuto Trait Implementations§
impl Freeze for BitcoinBalance
impl RefUnwindSafe for BitcoinBalance
impl Send for BitcoinBalance
impl Sync for BitcoinBalance
impl Unpin for BitcoinBalance
impl UnwindSafe for BitcoinBalance
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