pub enum Region {
Ntsc,
Pal,
}Expand description
Video region — fixes the line count and the NTSC/PAL status bit. Data, not behavior.
Variants§
Ntsc
262 lines / frame, 60 Hz. The default for the North-American / Japanese SNES.
Pal
312 lines / frame, 50 Hz.
Implementations§
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