pub enum OrganKindParseError {
Empty,
}Expand description
Error returned when parsing organ kinds fails.
Variants§
Empty
The organ kind was empty after trimming whitespace.
Trait Implementations§
Source§impl Clone for OrganKindParseError
impl Clone for OrganKindParseError
Source§fn clone(&self) -> OrganKindParseError
fn clone(&self) -> OrganKindParseError
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 OrganKindParseError
impl Debug for OrganKindParseError
Source§impl Display for OrganKindParseError
impl Display for OrganKindParseError
Source§impl Error for OrganKindParseError
impl Error for OrganKindParseError
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 OrganKindParseError
impl PartialEq for OrganKindParseError
impl Copy for OrganKindParseError
impl Eq for OrganKindParseError
impl StructuralPartialEq for OrganKindParseError
Auto Trait Implementations§
impl Freeze for OrganKindParseError
impl RefUnwindSafe for OrganKindParseError
impl Send for OrganKindParseError
impl Sync for OrganKindParseError
impl Unpin for OrganKindParseError
impl UnsafeUnpin for OrganKindParseError
impl UnwindSafe for OrganKindParseError
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