pub struct StarAmount {
pub amount: Integer,
pub nanostar_amount: Option<Integer>,
}Expand description
Describes an amount of Telegram Stars.
Fields§
§amount: IntegerInteger amount of Telegram Stars, rounded to 0; can be negative.
nanostar_amount: Option<Integer>The number of 1/1000000000 shares of Telegram Stars; from -999999999 to 999999999; can be negative if and only if amount is non-positive
Implementations§
Source§impl StarAmount
impl StarAmount
Sourcepub fn with_nanostar_amount(self, value: Integer) -> Self
pub fn with_nanostar_amount(self, value: Integer) -> Self
Sets a new nanostar amount.
§Arguments
value- The number of 1/1000000000 shares of Telegram Stars; from -999999999 to 999999999; can be negative if and only if amount is non-positive
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<'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 From<i64> for StarAmount
impl From<i64> for StarAmount
Source§impl PartialEq for StarAmount
impl PartialEq for StarAmount
Source§impl PartialOrd for StarAmount
impl PartialOrd for StarAmount
Source§impl Serialize for StarAmount
impl Serialize for StarAmount
impl Copy 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 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