pub struct TransactionListItem {Show 20 fields
pub txid: String,
pub address: String,
pub category: String,
pub amount: f64,
pub label: String,
pub vout: u32,
pub fee: Option<f64>,
pub confirmations: i64,
pub generated: Option<bool>,
pub trusted: Option<bool>,
pub blockhash: String,
pub blockheight: u64,
pub blockindex: u64,
pub blocktime: u64,
pub time: u64,
pub timereceived: u64,
pub comment: Option<String>,
pub bip125_replaceable: String,
pub abandoned: Option<bool>,
pub involves_watchonly: Option<bool>,
}Fields§
§txid: String§address: String§category: String§amount: f64§label: String§vout: u32§fee: Option<f64>§confirmations: i64§generated: Option<bool>§trusted: Option<bool>§blockhash: String§blockheight: u64§blockindex: u64§blocktime: u64§time: u64§timereceived: u64§comment: Option<String>§bip125_replaceable: String§abandoned: Option<bool>§involves_watchonly: Option<bool>Implementations§
Trait Implementations§
Source§impl Debug for TransactionListItem
impl Debug for TransactionListItem
Source§impl<'de> Deserialize<'de> for TransactionListItem
impl<'de> Deserialize<'de> for TransactionListItem
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 TransactionListItem
impl RefUnwindSafe for TransactionListItem
impl Send for TransactionListItem
impl Sync for TransactionListItem
impl Unpin for TransactionListItem
impl UnsafeUnpin for TransactionListItem
impl UnwindSafe for TransactionListItem
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