Struct htwdresden::SemesterPlan [] [src]

pub struct SemesterPlan {
    pub year: Year,
    pub semester_type: String,
    pub period: Period,
    pub holidays: Vec<Holiday>,
    pub lecture_period: Period,
    pub exam_period: Period,
    pub reregistration_period: Period,
}

Fields

Methods

impl SemesterPlan
[src]

Returns all currently available SemesterPlans.

Example

use htwdresden::SemesterPlan;

fn main() {
    let semesters = SemesterPlan::get();
}

Trait Implementations

impl Debug for SemesterPlan
[src]

Formats the value using the given formatter.