[][src]Struct wccg_data::models::RiderMonthlySummary

pub struct RiderMonthlySummary {
    pub rider_id: String,
    pub year: i32,
    pub month: i32,
    pub run_total: f32,
    pub ride_total: f32,
    pub swim_total: f32,
    pub walk_total: f32,
}

Fields

rider_id: String

The rider id

year: i32month: i32run_total: f32ride_total: f32swim_total: f32walk_total: f32

Trait Implementations

impl Debug for RiderMonthlySummary[src]

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

impl Serialize for RiderMonthlySummary[src]

Auto Trait Implementations

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: Deserialize<'de>, 
[src]

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.