pub enum FrameKind {
World,
Map,
Odom,
Base,
Tool,
Sensor,
Joint,
Link,
Unknown,
Custom(String),
}Expand description
Descriptive robotics frame kind vocabulary.
Variants§
World
World frame label.
Map
Map frame label.
Odom
Odometry frame label.
Base
Robot base frame label.
Tool
Tool frame label.
Sensor
Sensor frame label.
Joint
Joint frame label.
Link
Link frame label.
Unknown
Unknown frame kind.
Custom(String)
Caller-defined frame kind text.
Trait Implementations§
Source§impl Ord for FrameKind
impl Ord for FrameKind
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 FrameKind
impl PartialOrd for FrameKind
impl Eq for FrameKind
impl StructuralPartialEq for FrameKind
Auto Trait Implementations§
impl Freeze for FrameKind
impl RefUnwindSafe for FrameKind
impl Send for FrameKind
impl Sync for FrameKind
impl Unpin for FrameKind
impl UnsafeUnpin for FrameKind
impl UnwindSafe for FrameKind
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