pub enum BookmarkDecodeError {
InvalidPrefix,
InvalidLength,
InvalidHex,
}Variants§
Trait Implementations§
Source§impl Clone for BookmarkDecodeError
impl Clone for BookmarkDecodeError
Source§fn clone(&self) -> BookmarkDecodeError
fn clone(&self) -> BookmarkDecodeError
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 BookmarkDecodeError
impl Debug for BookmarkDecodeError
Source§impl Display for BookmarkDecodeError
impl Display for BookmarkDecodeError
impl Eq for BookmarkDecodeError
Source§impl Error for BookmarkDecodeError
impl Error for BookmarkDecodeError
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 BookmarkDecodeError
impl PartialEq for BookmarkDecodeError
Source§fn eq(&self, other: &BookmarkDecodeError) -> bool
fn eq(&self, other: &BookmarkDecodeError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BookmarkDecodeError
Auto Trait Implementations§
impl Freeze for BookmarkDecodeError
impl RefUnwindSafe for BookmarkDecodeError
impl Send for BookmarkDecodeError
impl Sync for BookmarkDecodeError
impl Unpin for BookmarkDecodeError
impl UnsafeUnpin for BookmarkDecodeError
impl UnwindSafe for BookmarkDecodeError
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