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