pub enum PitchError {
Empty,
InvalidFormat,
OutOfRange,
UnknownLabel,
}Variants§
Trait Implementations§
Source§impl Clone for PitchError
impl Clone for PitchError
Source§fn clone(&self) -> PitchError
fn clone(&self) -> PitchError
Returns a duplicate of the value. Read more
1.0.0 · 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 PitchError
impl Debug for PitchError
Source§impl Display for PitchError
impl Display for PitchError
Source§impl Error for PitchError
impl Error for PitchError
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 PitchError
impl PartialEq for PitchError
impl Copy for PitchError
impl Eq for PitchError
impl StructuralPartialEq for PitchError
Auto Trait Implementations§
impl Freeze for PitchError
impl RefUnwindSafe for PitchError
impl Send for PitchError
impl Sync for PitchError
impl Unpin for PitchError
impl UnsafeUnpin for PitchError
impl UnwindSafe for PitchError
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