Struct rucola::things::link::Awarder[][src]

pub struct Awarder {
    pub award_sub_type: String,
    pub coin_price: u32,
    pub coin_reward: u32,
    pub days_of_drip_extension: u32,
    pub days_of_premium: u32,
    pub giver_coin_reward: u32,
    pub icon_url: String,
    pub id: String,
    pub is_new: bool,
    pub penny_donate: Option<u32>,
    pub subreddit_id: Option<String>,
}

Fields

award_sub_type: String

Could probably be an enum

coin_price: u32coin_reward: u32days_of_drip_extension: u32days_of_premium: u32giver_coin_reward: u32icon_url: Stringid: Stringis_new: boolpenny_donate: Option<u32>subreddit_id: Option<String>

Trait Implementations

impl Debug for Awarder[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Awarder

impl Send for Awarder

impl Sync for Awarder

impl Unpin for Awarder

impl UnwindSafe for Awarder

Blanket Implementations

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

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

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

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

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

impl<T> Instrument 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<V, T> VZip<V> for T where
    V: MultiLane<T>,