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