[][src]Struct google_youtube3::LiveChatSuperChatDetails

pub struct LiveChatSuperChatDetails {
    pub tier: Option<u32>,
    pub currency: Option<String>,
    pub amount_display_string: Option<String>,
    pub amount_micros: Option<String>,
    pub user_comment: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

tier: Option<u32>

The tier in which the amount belongs. Lower amounts belong to lower tiers. The lowest tier is 1.

currency: Option<String>

The currency in which the purchase was made.

amount_display_string: Option<String>

A rendered string that displays the fund amount and currency to the user.

amount_micros: Option<String>

The amount purchased by the user, in micros (1,750,000 micros = 1.75).

user_comment: Option<String>

The comment added by the user to this Super Chat event.

Trait Implementations

impl Part for LiveChatSuperChatDetails[src]

impl Default for LiveChatSuperChatDetails[src]

impl Clone for LiveChatSuperChatDetails[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for LiveChatSuperChatDetails[src]

impl Serialize for LiveChatSuperChatDetails[src]

impl<'de> Deserialize<'de> for LiveChatSuperChatDetails[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]