Enum RobotSensorKind
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§
§impl Clone for RobotSensorKind
impl Clone for RobotSensorKind
§fn clone(&self) -> RobotSensorKind
fn clone(&self) -> RobotSensorKind
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 more§impl Debug for RobotSensorKind
impl Debug for RobotSensorKind
§impl Display for RobotSensorKind
impl Display for RobotSensorKind
§impl FromStr for RobotSensorKind
impl FromStr for RobotSensorKind
§impl Hash for RobotSensorKind
impl Hash for RobotSensorKind
§impl Ord for RobotSensorKind
impl Ord for RobotSensorKind
§impl PartialEq for RobotSensorKind
impl PartialEq for RobotSensorKind
§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