[][src]Struct nikel_rs::Exam

pub struct Exam {
    pub id: Option<String>,
    pub course_id: Option<String>,
    pub course_code: Option<String>,
    pub campus: Option<String>,
    pub date: Option<String>,
    pub start: Option<i64>,
    pub end: Option<i64>,
    pub duration: Option<i64>,
    pub sections: Vec<ExamSection>,
    pub last_updated: Option<String>,
}

Fields

id: Option<String>course_id: Option<String>course_code: Option<String>campus: Option<String>date: Option<String>start: Option<i64>end: Option<i64>duration: Option<i64>sections: Vec<ExamSection>last_updated: Option<String>

Trait Implementations

impl Clone for Exam[src]

impl Debug for Exam[src]

impl Default for Exam[src]

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

impl Serialize for Exam[src]

Auto Trait Implementations

impl RefUnwindSafe for Exam

impl Send for Exam

impl Sync for Exam

impl Unpin for Exam

impl UnwindSafe for Exam

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.