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