pub enum Course {
Cse115,
Raw(String),
}
Expand description
An enum of available courses in the catalog.
If a course is missing, manually specify its id with Course::Raw
and
consider sending a PR adding that mapping.
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Course
impl RefUnwindSafe for Course
impl Send for Course
impl Sync for Course
impl Unpin for Course
impl UnwindSafe for Course
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