pub enum RomParserError {
TooShort,
InvalidMagicBytes,
MapperNotImplemented,
}Variants§
Trait Implementations§
Source§impl Clone for RomParserError
impl Clone for RomParserError
Source§fn clone(&self) -> RomParserError
fn clone(&self) -> RomParserError
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 RomParserError
impl Debug for RomParserError
Source§impl Display for RomParserError
impl Display for RomParserError
impl Copy for RomParserError
Auto Trait Implementations§
impl Freeze for RomParserError
impl RefUnwindSafe for RomParserError
impl Send for RomParserError
impl Sync for RomParserError
impl Unpin for RomParserError
impl UnwindSafe for RomParserError
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