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