pub enum RomFileType {
Nes,
Snes,
N64,
MasterSystem,
GameGear,
GameBoy,
GameBoyAdvance,
Genesis,
SegaCD,
CDSystem,
Unknown,
}Expand description
Represents the type of ROM file based on its extension. This enum is used internally to dispatch to the correct analysis logic.
Variants§
Trait Implementations§
Source§impl Debug for RomFileType
impl Debug for RomFileType
Source§impl PartialEq for RomFileType
impl PartialEq for RomFileType
impl Eq for RomFileType
impl StructuralPartialEq for RomFileType
Auto Trait Implementations§
impl Freeze for RomFileType
impl RefUnwindSafe for RomFileType
impl Send for RomFileType
impl Sync for RomFileType
impl Unpin for RomFileType
impl UnwindSafe for RomFileType
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