pub enum RobotSensorKind {
Camera,
Lidar,
Radar,
Imu,
Encoder,
ForceTorque,
Proximity,
Ultrasonic,
Gps,
Microphone,
Unknown,
Custom(String),
}Expand description
Descriptive robot sensor kind vocabulary.
Variants§
Camera
Camera sensor.
Lidar
Lidar sensor.
Radar
Radar sensor.
Imu
Inertial measurement unit.
Encoder
Encoder sensor.
ForceTorque
Force-torque sensor.
Proximity
Proximity sensor.
Ultrasonic
Ultrasonic sensor.
Gps
GPS receiver.
Microphone
Microphone sensor.
Unknown
Unknown sensor kind.
Custom(String)
Caller-defined sensor kind text.
Trait Implementations§
Source§impl Clone for RobotSensorKind
impl Clone for RobotSensorKind
Source§fn clone(&self) -> RobotSensorKind
fn clone(&self) -> RobotSensorKind
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 RobotSensorKind
impl Debug for RobotSensorKind
Source§impl Display for RobotSensorKind
impl Display for RobotSensorKind
Source§impl FromStr for RobotSensorKind
impl FromStr for RobotSensorKind
Source§impl Hash for RobotSensorKind
impl Hash for RobotSensorKind
Source§impl Ord for RobotSensorKind
impl Ord for RobotSensorKind
Source§fn cmp(&self, other: &RobotSensorKind) -> Ordering
fn cmp(&self, other: &RobotSensorKind) -> 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 RobotSensorKind
impl PartialEq for RobotSensorKind
Source§fn eq(&self, other: &RobotSensorKind) -> bool
fn eq(&self, other: &RobotSensorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RobotSensorKind
impl PartialOrd for RobotSensorKind
impl Eq for RobotSensorKind
impl StructuralPartialEq for RobotSensorKind
Auto Trait Implementations§
impl Freeze for RobotSensorKind
impl RefUnwindSafe for RobotSensorKind
impl Send for RobotSensorKind
impl Sync for RobotSensorKind
impl Unpin for RobotSensorKind
impl UnsafeUnpin for RobotSensorKind
impl UnwindSafe for RobotSensorKind
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