pub struct AccountPendingTransactions {
pub pending_transactions: Vec<Transaction>,
pub first_tx_status: Option<TransactionStatus>,
pub pending_count: U64,
}
Fields§
§pending_transactions: Vec<Transaction>
§first_tx_status: Option<TransactionStatus>
§pending_count: U64
Trait Implementations§
source§impl Clone for AccountPendingTransactions
impl Clone for AccountPendingTransactions
source§fn clone(&self) -> AccountPendingTransactions
fn clone(&self) -> AccountPendingTransactions
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 Default for AccountPendingTransactions
impl Default for AccountPendingTransactions
source§fn default() -> AccountPendingTransactions
fn default() -> AccountPendingTransactions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for AccountPendingTransactions
impl Send for AccountPendingTransactions
impl Sync for AccountPendingTransactions
impl Unpin for AccountPendingTransactions
impl UnwindSafe for AccountPendingTransactions
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