pub struct TonTransactions {
pub ton_amount: i64,
pub transactions: Vec<TonTransaction>,
pub next_offset: String,
}Expand description
Represents a list of Toncoin transactions
Fields§
§ton_amount: i64The total amount of owned Toncoins
transactions: Vec<TonTransaction>List of Toncoin transactions
next_offset: StringThe offset for the next request. If empty, then there are no more results
Trait Implementations§
Source§impl Clone for TonTransactions
impl Clone for TonTransactions
Source§fn clone(&self) -> TonTransactions
fn clone(&self) -> TonTransactions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TonTransactions
impl Debug for TonTransactions
Source§impl Default for TonTransactions
impl Default for TonTransactions
Source§fn default() -> TonTransactions
fn default() -> TonTransactions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TonTransactions
impl<'de> Deserialize<'de> for TonTransactions
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 TonTransactions
impl PartialEq for TonTransactions
Source§fn eq(&self, other: &TonTransactions) -> bool
fn eq(&self, other: &TonTransactions) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TonTransactions
impl Serialize for TonTransactions
impl StructuralPartialEq for TonTransactions
Auto Trait Implementations§
impl Freeze for TonTransactions
impl RefUnwindSafe for TonTransactions
impl Send for TonTransactions
impl Sync for TonTransactions
impl Unpin for TonTransactions
impl UnsafeUnpin for TonTransactions
impl UnwindSafe for TonTransactions
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