Struct google_youtube3::api::LiveChatSuperStickerDetails
source · pub struct LiveChatSuperStickerDetails {
pub amount_display_string: Option<String>,
pub amount_micros: Option<u64>,
pub currency: Option<String>,
pub super_sticker_metadata: Option<SuperStickerMetadata>,
pub tier: Option<u32>,
}
Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§amount_display_string: Option<String>
A rendered string that displays the fund amount and currency to the user.
amount_micros: Option<u64>
The amount purchased by the user, in micros (1,750,000 micros = 1.75).
currency: Option<String>
The currency in which the purchase was made.
super_sticker_metadata: Option<SuperStickerMetadata>
Information about the Super Sticker.
tier: Option<u32>
The tier in which the amount belongs. Lower amounts belong to lower tiers. The lowest tier is 1.
Trait Implementations§
source§impl Clone for LiveChatSuperStickerDetails
impl Clone for LiveChatSuperStickerDetails
source§fn clone(&self) -> LiveChatSuperStickerDetails
fn clone(&self) -> LiveChatSuperStickerDetails
Returns a copy 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 LiveChatSuperStickerDetails
impl Debug for LiveChatSuperStickerDetails
source§impl Default for LiveChatSuperStickerDetails
impl Default for LiveChatSuperStickerDetails
source§fn default() -> LiveChatSuperStickerDetails
fn default() -> LiveChatSuperStickerDetails
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LiveChatSuperStickerDetails
impl<'de> Deserialize<'de> for LiveChatSuperStickerDetails
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
impl Part for LiveChatSuperStickerDetails
Auto Trait Implementations§
impl RefUnwindSafe for LiveChatSuperStickerDetails
impl Send for LiveChatSuperStickerDetails
impl Sync for LiveChatSuperStickerDetails
impl Unpin for LiveChatSuperStickerDetails
impl UnwindSafe for LiveChatSuperStickerDetails
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