Enum ActuatorState
pub enum ActuatorState {
Idle,
Enabled,
Disabled,
Moving,
Faulted,
Unknown,
Custom(String),
}Expand description
Descriptive actuator state vocabulary.
Variants§
Idle
Idle actuator state.
Enabled
Enabled actuator state.
Disabled
Disabled actuator state.
Moving
Moving actuator state.
Faulted
Faulted actuator state.
Unknown
Unknown actuator state.
Custom(String)
Caller-defined actuator state text.
Trait Implementations§
§impl Clone for ActuatorState
impl Clone for ActuatorState
§fn clone(&self) -> ActuatorState
fn clone(&self) -> ActuatorState
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 ActuatorState
impl Debug for ActuatorState
§impl Display for ActuatorState
impl Display for ActuatorState
§impl FromStr for ActuatorState
impl FromStr for ActuatorState
§impl Hash for ActuatorState
impl Hash for ActuatorState
§impl Ord for ActuatorState
impl Ord for ActuatorState
§impl PartialEq for ActuatorState
impl PartialEq for ActuatorState
§impl PartialOrd for ActuatorState
impl PartialOrd for ActuatorState
impl Eq for ActuatorState
impl StructuralPartialEq for ActuatorState
Auto Trait Implementations§
impl Freeze for ActuatorState
impl RefUnwindSafe for ActuatorState
impl Send for ActuatorState
impl Sync for ActuatorState
impl Unpin for ActuatorState
impl UnsafeUnpin for ActuatorState
impl UnwindSafe for ActuatorState
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