pub struct StarAmount {
pub star_count: i64,
pub nanostar_count: i32,
}Expand description
Describes a possibly non-integer Telegram Star amount
Fields§
§star_count: i64The integer Telegram Star amount rounded to 0
nanostar_count: i32The number of 1/1000000000 shares of Telegram Stars; from -999999999 to 999999999
Trait Implementations§
Source§impl Clone for StarAmount
impl Clone for StarAmount
Source§fn clone(&self) -> StarAmount
fn clone(&self) -> StarAmount
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 StarAmount
impl Debug for StarAmount
Source§impl Default for StarAmount
impl Default for StarAmount
Source§fn default() -> StarAmount
fn default() -> StarAmount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StarAmount
impl<'de> Deserialize<'de> for StarAmount
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 StarAmount
impl PartialEq for StarAmount
Source§impl Serialize for StarAmount
impl Serialize for StarAmount
impl StructuralPartialEq for StarAmount
Auto Trait Implementations§
impl Freeze for StarAmount
impl RefUnwindSafe for StarAmount
impl Send for StarAmount
impl Sync for StarAmount
impl Unpin for StarAmount
impl UnsafeUnpin for StarAmount
impl UnwindSafe for StarAmount
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