[][src]Struct leetup::service::leetcode::Stat

pub struct Stat {
    pub question_id: usize,
    pub question_article_live: Option<bool>,
    pub question_article_slug: Option<String>,
    pub question_title: String,
    pub question_title_slug: String,
    pub question_hide: bool,
    pub total_acs: usize,
    pub total_submitted: usize,
    pub frontend_question_id: usize,
    pub is_new_question: bool,
}

Fields

question_id: usizequestion_article_live: Option<bool>question_article_slug: Option<String>question_title: Stringquestion_title_slug: Stringquestion_hide: booltotal_acs: usizetotal_submitted: usizefrontend_question_id: usizeis_new_question: bool

Trait Implementations

impl Debug for Stat[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Stat

impl Send for Stat

impl Sync for Stat

impl Unpin for Stat

impl UnwindSafe for Stat

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> 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.