pub enum Region {
Ntsc,
Pal,
Dendy,
}Expand description
NES region (governs clock dividers, scanline counts, audio rate tables).
See docs/glossary.md for definitions.
Variants§
Ntsc
NTSC (Japan, North America, Australia). 60 Hz, 262 scanlines.
Pal
PAL (Europe). 50 Hz, 312 scanlines.
Dendy
Dendy (Russian PAL famiclone). 50 Hz, 312 scanlines, NTSC-style timing.
Trait Implementations§
impl Copy for Region
impl Eq for Region
impl StructuralPartialEq for Region
Auto Trait Implementations§
impl Freeze for Region
impl RefUnwindSafe for Region
impl Send for Region
impl Sync for Region
impl Unpin for Region
impl UnsafeUnpin for Region
impl UnwindSafe for Region
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