#[non_exhaustive]pub enum TrackStatus {
Acquiring,
Tracking,
}Expand description
Track acquisition status.
#[non_exhaustive]; match with a wildcard arm.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Acquiring
Fewer fixes than the policy requires; course and speed are provisional.
Tracking
Acquired.
Trait Implementations§
Source§impl Clone for TrackStatus
impl Clone for TrackStatus
impl Copy for TrackStatus
Source§impl Debug for TrackStatus
impl Debug for TrackStatus
impl Eq for TrackStatus
Source§impl Hash for TrackStatus
impl Hash for TrackStatus
Source§impl PartialEq for TrackStatus
impl PartialEq for TrackStatus
impl StructuralPartialEq for TrackStatus
Auto Trait Implementations§
impl Freeze for TrackStatus
impl RefUnwindSafe for TrackStatus
impl Send for TrackStatus
impl Sync for TrackStatus
impl Unpin for TrackStatus
impl UnsafeUnpin for TrackStatus
impl UnwindSafe for TrackStatus
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