pub enum ChordParseResult {
Success(Chord),
Failure(ChordParseErrorKind),
}Expand description
Result of the ChordParser’s parse.
Variants§
Auto Trait Implementations§
impl Freeze for ChordParseResult
impl RefUnwindSafe for ChordParseResult
impl Send for ChordParseResult
impl Sync for ChordParseResult
impl Unpin for ChordParseResult
impl UnwindSafe for ChordParseResult
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