pub enum RobotSubsystemKind {
Locomotion,
Manipulation,
Perception,
Power,
Control,
Communication,
Navigation,
Safety,
HumanInterface,
Unknown,
Custom(String),
}Expand description
Descriptive robot subsystem kind vocabulary.
Variants§
Locomotion
Locomotion subsystem label.
Manipulation
Manipulation subsystem label.
Perception
Perception subsystem label.
Power
Power subsystem label.
Control
Control subsystem label.
Communication
Communication subsystem label.
Navigation subsystem label.
Safety
Safety subsystem label.
HumanInterface
Human-interface subsystem label.
Unknown
Unknown subsystem kind.
Custom(String)
Caller-defined subsystem kind text.
Trait Implementations§
Source§impl Clone for RobotSubsystemKind
impl Clone for RobotSubsystemKind
Source§fn clone(&self) -> RobotSubsystemKind
fn clone(&self) -> RobotSubsystemKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RobotSubsystemKind
impl Debug for RobotSubsystemKind
Source§impl Display for RobotSubsystemKind
impl Display for RobotSubsystemKind
Source§impl FromStr for RobotSubsystemKind
impl FromStr for RobotSubsystemKind
Source§impl Hash for RobotSubsystemKind
impl Hash for RobotSubsystemKind
Source§impl Ord for RobotSubsystemKind
impl Ord for RobotSubsystemKind
Source§fn cmp(&self, other: &RobotSubsystemKind) -> Ordering
fn cmp(&self, other: &RobotSubsystemKind) -> Ordering
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 PartialEq for RobotSubsystemKind
impl PartialEq for RobotSubsystemKind
Source§fn eq(&self, other: &RobotSubsystemKind) -> bool
fn eq(&self, other: &RobotSubsystemKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RobotSubsystemKind
impl PartialOrd for RobotSubsystemKind
impl Eq for RobotSubsystemKind
impl StructuralPartialEq for RobotSubsystemKind
Auto Trait Implementations§
impl Freeze for RobotSubsystemKind
impl RefUnwindSafe for RobotSubsystemKind
impl Send for RobotSubsystemKind
impl Sync for RobotSubsystemKind
impl Unpin for RobotSubsystemKind
impl UnsafeUnpin for RobotSubsystemKind
impl UnwindSafe for RobotSubsystemKind
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