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

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

Fields

count: u64created_at: DateTime<Utc>end: DateTime<Utc>feeling: Option<String>how: Option<String>project_challenge_id: u64project_id: u64session_date: NaiveDatestart: Option<String>unit_type: u64where: Option<String>

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.