pub enum ActuatorKindParseError {
Empty,
}Expand description
Error returned when parsing actuator kinds fails.
Variants§
Empty
The actuator kind was empty after trimming whitespace.
Trait Implementations§
Source§impl Clone for ActuatorKindParseError
impl Clone for ActuatorKindParseError
Source§fn clone(&self) -> ActuatorKindParseError
fn clone(&self) -> ActuatorKindParseError
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 ActuatorKindParseError
impl Debug for ActuatorKindParseError
Source§impl Display for ActuatorKindParseError
impl Display for ActuatorKindParseError
Source§impl Error for ActuatorKindParseError
impl Error for ActuatorKindParseError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ActuatorKindParseError
impl PartialEq for ActuatorKindParseError
impl Copy for ActuatorKindParseError
impl Eq for ActuatorKindParseError
impl StructuralPartialEq for ActuatorKindParseError
Auto Trait Implementations§
impl Freeze for ActuatorKindParseError
impl RefUnwindSafe for ActuatorKindParseError
impl Send for ActuatorKindParseError
impl Sync for ActuatorKindParseError
impl Unpin for ActuatorKindParseError
impl UnsafeUnpin for ActuatorKindParseError
impl UnwindSafe for ActuatorKindParseError
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