pub enum EndEffectorKindParseError {
Empty,
}Expand description
Error returned when parsing end-effector kinds fails.
Variants§
Empty
The end-effector kind was empty after trimming whitespace.
Trait Implementations§
Source§impl Clone for EndEffectorKindParseError
impl Clone for EndEffectorKindParseError
Source§fn clone(&self) -> EndEffectorKindParseError
fn clone(&self) -> EndEffectorKindParseError
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 EndEffectorKindParseError
impl Debug for EndEffectorKindParseError
Source§impl Display for EndEffectorKindParseError
impl Display for EndEffectorKindParseError
Source§impl Error for EndEffectorKindParseError
impl Error for EndEffectorKindParseError
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 EndEffectorKindParseError
impl PartialEq for EndEffectorKindParseError
Source§fn eq(&self, other: &EndEffectorKindParseError) -> bool
fn eq(&self, other: &EndEffectorKindParseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EndEffectorKindParseError
impl Eq for EndEffectorKindParseError
impl StructuralPartialEq for EndEffectorKindParseError
Auto Trait Implementations§
impl Freeze for EndEffectorKindParseError
impl RefUnwindSafe for EndEffectorKindParseError
impl Send for EndEffectorKindParseError
impl Sync for EndEffectorKindParseError
impl Unpin for EndEffectorKindParseError
impl UnsafeUnpin for EndEffectorKindParseError
impl UnwindSafe for EndEffectorKindParseError
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