pub enum StarAmount {
StarAmount(StarAmount),
}Variants§
StarAmount(StarAmount)
Describes a possibly non-integer Telegram Star amount
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 (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 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 PartialEq for StarAmount
impl PartialEq for StarAmount
Source§fn eq(&self, other: &StarAmount) -> bool
fn eq(&self, other: &StarAmount) -> bool
Tests for
self and other values to be equal, and is used by ==.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