[][src]Struct nikel_rs::Course

pub struct Course {
    pub id: OptionWrapper<String>,
    pub code: OptionWrapper<String>,
    pub name: OptionWrapper<String>,
    pub description: OptionWrapper<String>,
    pub division: OptionWrapper<String>,
    pub department: OptionWrapper<String>,
    pub prerequisites: OptionWrapper<String>,
    pub corequisites: OptionWrapper<String>,
    pub exclusions: OptionWrapper<String>,
    pub recommended_preparation: OptionWrapper<String>,
    pub level: OptionWrapper<String>,
    pub campus: OptionWrapper<String>,
    pub term: OptionWrapper<String>,
    pub arts_and_science_breadth: OptionWrapper<String>,
    pub arts_and_science_distribution: OptionWrapper<String>,
    pub utm_distribution: OptionWrapper<String>,
    pub utsc_breadth: OptionWrapper<String>,
    pub apsc_electives: OptionWrapper<String>,
    pub meeting_sections: Vec<CoursesMeetingSection>,
    pub last_updated: OptionWrapper<String>,
}

Fields

id: OptionWrapper<String>code: OptionWrapper<String>name: OptionWrapper<String>description: OptionWrapper<String>division: OptionWrapper<String>department: OptionWrapper<String>prerequisites: OptionWrapper<String>corequisites: OptionWrapper<String>exclusions: OptionWrapper<String>recommended_preparation: OptionWrapper<String>level: OptionWrapper<String>campus: OptionWrapper<String>term: OptionWrapper<String>arts_and_science_breadth: OptionWrapper<String>arts_and_science_distribution: OptionWrapper<String>utm_distribution: OptionWrapper<String>utsc_breadth: OptionWrapper<String>apsc_electives: OptionWrapper<String>meeting_sections: Vec<CoursesMeetingSection>last_updated: OptionWrapper<String>

Trait Implementations

impl Clone for Course[src]

impl Debug for Course[src]

impl Default for Course[src]

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

impl Serialize for Course[src]

Auto Trait Implementations

impl RefUnwindSafe for Course

impl Send for Course

impl Sync for Course

impl Unpin for Course

impl UnwindSafe for Course

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.