pub enum PilotRating {
Student = 1,
VFR = 2,
IFR = 3,
Instructor = 4,
Supervisor = 5,
}
Variants§
Trait Implementations§
Source§impl Clone for PilotRating
impl Clone for PilotRating
Source§fn clone(&self) -> PilotRating
fn clone(&self) -> PilotRating
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PilotRating
impl Debug for PilotRating
Source§impl FromStr for PilotRating
impl FromStr for PilotRating
impl Copy for PilotRating
Auto Trait Implementations§
impl Freeze for PilotRating
impl RefUnwindSafe for PilotRating
impl Send for PilotRating
impl Sync for PilotRating
impl Unpin for PilotRating
impl UnwindSafe for PilotRating
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