pub enum CmaParserError {
Success,
IncompatibleInput,
MalformedInput,
Unknown,
Message(String),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CmaParserError
impl Clone for CmaParserError
Source§fn clone(&self) -> CmaParserError
fn clone(&self) -> CmaParserError
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 CmaParserError
impl Debug for CmaParserError
Source§impl PartialEq for CmaParserError
impl PartialEq for CmaParserError
impl Eq for CmaParserError
impl StructuralPartialEq for CmaParserError
Auto Trait Implementations§
impl Freeze for CmaParserError
impl RefUnwindSafe for CmaParserError
impl Send for CmaParserError
impl Sync for CmaParserError
impl Unpin for CmaParserError
impl UnwindSafe for CmaParserError
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