pub enum Semester {
Spring2023,
Summer2023,
Fall2023,
Winter2023,
Raw(String),
}
Expand description
An enum of available semesters in the catalog.
If a semester is missing, manually specify its id with Semester::Raw
and
consider sending a PR adding that mapping.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Semester
impl RefUnwindSafe for Semester
impl Send for Semester
impl Sync for Semester
impl Unpin for Semester
impl UnwindSafe for Semester
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more