pub struct AddressTxEvent {
pub address: String,
pub txid: String,
pub value: i64,
pub confirmed: bool,
}Expand description
Address transaction event.
Fields§
§address: StringThe address
txid: StringTransaction ID
value: i64Value change in satoshis (positive = received, negative = sent)
confirmed: boolWhether confirmed
Trait Implementations§
Source§impl Clone for AddressTxEvent
impl Clone for AddressTxEvent
Source§fn clone(&self) -> AddressTxEvent
fn clone(&self) -> AddressTxEvent
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 AddressTxEvent
impl Debug for AddressTxEvent
Source§impl<'de> Deserialize<'de> for AddressTxEvent
impl<'de> Deserialize<'de> for AddressTxEvent
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 AddressTxEvent
impl RefUnwindSafe for AddressTxEvent
impl Send for AddressTxEvent
impl Sync for AddressTxEvent
impl Unpin for AddressTxEvent
impl UnwindSafe for AddressTxEvent
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