[][src]Struct nanowrimo::data::ProjectSessionData

pub struct ProjectSessionData {
    pub count: i64,
    pub created_at: DateTime<Utc>,
    pub end: DateTime<Utc>,
    pub feeling: Option<Feeling>,
    pub how: Option<How>,
    pub project_challenge_id: u64,
    pub project_id: u64,
    pub session_date: NaiveDate,
    pub start: Option<DateTime<Utc>>,
    pub unit_type: UnitType,
    pub where: Option<Where>,
}

Fields

count: i64created_at: DateTime<Utc>end: DateTime<Utc>feeling: Option<Feeling>how: Option<How>project_challenge_id: u64project_id: u64session_date: NaiveDatestart: Option<DateTime<Utc>>unit_type: UnitTypewhere: Option<Where>

Trait Implementations

impl Debug for ProjectSessionData[src]

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

impl Serialize for ProjectSessionData[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: 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.