pub enum TreeIdParseError {
Length(usize),
CanonicalHex,
}Expand description
TreeIdParseError
Typed rejection for a non-canonical concrete Tree identity.
Variants§
Trait Implementations§
Source§impl Clone for TreeIdParseError
impl Clone for TreeIdParseError
Source§fn clone(&self) -> TreeIdParseError
fn clone(&self) -> TreeIdParseError
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 TreeIdParseError
impl Debug for TreeIdParseError
Source§impl Display for TreeIdParseError
impl Display for TreeIdParseError
impl Eq for TreeIdParseError
Source§impl Error for TreeIdParseError
impl Error for TreeIdParseError
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 TreeIdParseError
impl PartialEq for TreeIdParseError
impl StructuralPartialEq for TreeIdParseError
Auto Trait Implementations§
impl Freeze for TreeIdParseError
impl RefUnwindSafe for TreeIdParseError
impl Send for TreeIdParseError
impl Sync for TreeIdParseError
impl Unpin for TreeIdParseError
impl UnsafeUnpin for TreeIdParseError
impl UnwindSafe for TreeIdParseError
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