pub enum PoseKind {
Home,
Ready,
Rest,
Tool,
Target,
Waypoint,
Calibration,
Unknown,
Custom(String),
}Expand description
Descriptive pose kind vocabulary.
Variants§
Home
Home pose label.
Ready
Ready pose label.
Rest
Rest pose label.
Tool
Tool pose label.
Target
Target pose label.
Waypoint
Waypoint pose label.
Calibration
Calibration pose label.
Unknown
Unknown pose kind.
Custom(String)
Caller-defined pose kind text.
Trait Implementations§
Source§impl Ord for PoseKind
impl Ord for PoseKind
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for PoseKind
impl PartialOrd for PoseKind
impl Eq for PoseKind
impl StructuralPartialEq for PoseKind
Auto Trait Implementations§
impl Freeze for PoseKind
impl RefUnwindSafe for PoseKind
impl Send for PoseKind
impl Sync for PoseKind
impl Unpin for PoseKind
impl UnsafeUnpin for PoseKind
impl UnwindSafe for PoseKind
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