pub enum ActuatorKind {
ElectricMotor,
Servo,
StepperMotor,
LinearActuator,
Hydraulic,
Pneumatic,
Solenoid,
Unknown,
Custom(String),
}Expand description
Descriptive actuator kind vocabulary.
Variants§
ElectricMotor
Electric motor actuator.
Servo
Servo actuator.
StepperMotor
Stepper motor actuator.
LinearActuator
Linear actuator.
Hydraulic
Hydraulic actuator.
Pneumatic
Pneumatic actuator.
Solenoid
Solenoid actuator.
Unknown
Unknown actuator kind.
Custom(String)
Caller-defined actuator kind text.
Trait Implementations§
Source§impl Clone for ActuatorKind
impl Clone for ActuatorKind
Source§fn clone(&self) -> ActuatorKind
fn clone(&self) -> ActuatorKind
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 moreSource§impl Debug for ActuatorKind
impl Debug for ActuatorKind
Source§impl Display for ActuatorKind
impl Display for ActuatorKind
Source§impl FromStr for ActuatorKind
impl FromStr for ActuatorKind
Source§impl Hash for ActuatorKind
impl Hash for ActuatorKind
Source§impl Ord for ActuatorKind
impl Ord for ActuatorKind
Source§fn cmp(&self, other: &ActuatorKind) -> Ordering
fn cmp(&self, other: &ActuatorKind) -> Ordering
1.21.0 · 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 ActuatorKind
impl PartialEq for ActuatorKind
Source§impl PartialOrd for ActuatorKind
impl PartialOrd for ActuatorKind
impl Eq for ActuatorKind
impl StructuralPartialEq for ActuatorKind
Auto Trait Implementations§
impl Freeze for ActuatorKind
impl RefUnwindSafe for ActuatorKind
impl Send for ActuatorKind
impl Sync for ActuatorKind
impl Unpin for ActuatorKind
impl UnsafeUnpin for ActuatorKind
impl UnwindSafe for ActuatorKind
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