pub struct LoadedRom {
pub name: String,
pub battery_backed: bool,
pub region: NesRegion,
}
Expand description
Represents a loaded ROM Cart
.
Fields§
§name: String
Name of ROM.
battery_backed: bool
Whether the loaded Cart is battery-backed.
region: NesRegion
Auto-detected of the loaded Cart.
Trait Implementations§
impl Eq for LoadedRom
impl StructuralPartialEq for LoadedRom
Auto Trait Implementations§
impl Freeze for LoadedRom
impl RefUnwindSafe for LoadedRom
impl Send for LoadedRom
impl Sync for LoadedRom
impl Unpin for LoadedRom
impl UnwindSafe for LoadedRom
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