Struct toggl_reports::weekly_report::UserData[][src]

pub struct UserData<Totals> {
    pub title: UserTitle,
    pub uid: Option<u64>,
    pub totals: Totals,
    pub details: Vec<UserDetail<Totals>>,
}

Fields

title: UserTitleuid: Option<u64>totals: Totalsdetails: Vec<UserDetail<Totals>>

Trait Implementations

impl<Totals: Debug> Debug for UserData<Totals>[src]

impl<'de, Totals> Deserialize<'de> for UserData<Totals> where
    Totals: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<Totals> RefUnwindSafe for UserData<Totals> where
    Totals: RefUnwindSafe

impl<Totals> Send for UserData<Totals> where
    Totals: Send

impl<Totals> Sync for UserData<Totals> where
    Totals: Sync

impl<Totals> Unpin for UserData<Totals> where
    Totals: Unpin

impl<Totals> UnwindSafe for UserData<Totals> where
    Totals: UnwindSafe

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.