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