[][src]Struct nikel_rs::EvalLecture

pub struct EvalLecture {
    pub lecture_code: Option<String>,
    pub firstname: Option<String>,
    pub lastname: Option<String>,
    pub s1: Option<f64>,
    pub s2: Option<f64>,
    pub s3: Option<f64>,
    pub s4: Option<f64>,
    pub s5: Option<f64>,
    pub s6: Option<f64>,
    pub invited: Option<i64>,
    pub responses: Option<i64>,
}

Fields

lecture_code: Option<String>firstname: Option<String>lastname: Option<String>s1: Option<f64>s2: Option<f64>s3: Option<f64>s4: Option<f64>s5: Option<f64>s6: Option<f64>invited: Option<i64>responses: Option<i64>

Trait Implementations

impl Clone for EvalLecture[src]

impl Debug for EvalLecture[src]

impl Default for EvalLecture[src]

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

impl Serialize for EvalLecture[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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.