pub enum AutoApproachStatus {
Idle,
Running,
Unknown,
}Expand description
Status information for auto-approach operations
Variants§
Idle
Auto-approach is not running
Running
Auto-approach is currently running
Unknown
Auto-approach status is unknown (e.g., communication error)
Trait Implementations§
Source§impl Clone for AutoApproachStatus
impl Clone for AutoApproachStatus
Source§fn clone(&self) -> AutoApproachStatus
fn clone(&self) -> AutoApproachStatus
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 AutoApproachStatus
impl Debug for AutoApproachStatus
Source§impl PartialEq for AutoApproachStatus
impl PartialEq for AutoApproachStatus
impl Eq for AutoApproachStatus
impl StructuralPartialEq for AutoApproachStatus
Auto Trait Implementations§
impl Freeze for AutoApproachStatus
impl RefUnwindSafe for AutoApproachStatus
impl Send for AutoApproachStatus
impl Sync for AutoApproachStatus
impl Unpin for AutoApproachStatus
impl UnwindSafe for AutoApproachStatus
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