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