pub enum ScratchPad {
Show 14 variants
PlainTextOrDirect(String),
RateOfClimbDescent(u32),
Heading(u32),
Speed(u32),
Mach(u32),
SpeedOperator(Operator),
RateOfClimbDescentOperator(Operator),
Stand(String),
CancelledStand,
ManualStand(String, String),
CancelledManualStand,
ClearanceReceived,
ClearanceCancelled,
GroundState(GroundState),
}Variants§
PlainTextOrDirect(String)
RateOfClimbDescent(u32)
Heading(u32)
Speed(u32)
Mach(u32)
SpeedOperator(Operator)
RateOfClimbDescentOperator(Operator)
Stand(String)
CancelledStand
ManualStand(String, String)
CancelledManualStand
ClearanceReceived
ClearanceCancelled
GroundState(GroundState)
Trait Implementations§
Source§impl Clone for ScratchPad
impl Clone for ScratchPad
Source§fn clone(&self) -> ScratchPad
fn clone(&self) -> ScratchPad
Returns a duplicate 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 ScratchPad
impl Debug for ScratchPad
Source§impl Display for ScratchPad
impl Display for ScratchPad
Auto Trait Implementations§
impl Freeze for ScratchPad
impl RefUnwindSafe for ScratchPad
impl Send for ScratchPad
impl Sync for ScratchPad
impl Unpin for ScratchPad
impl UnwindSafe for ScratchPad
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