pub enum Career {
Undergraduate,
Graduate,
Law,
DentalMedicine,
Medicine,
Pharmacy,
Raw(String),
}
Expand description
An enum of available careers in the catalog.
If a career is missing, manually specify its id with Career::Raw
and
consider sending a PR adding that mapping.
Specifying the career is an internal implementation detail exposed by the backend network API. It doesn’t make much sense to have, but nevertheless, it is required.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Career
impl RefUnwindSafe for Career
impl Send for Career
impl Sync for Career
impl Unpin for Career
impl UnwindSafe for Career
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