pub enum RetroRegion {
NTSC = 0,
PAL = 1,
}
Expand description
Represents the set of regions supported by libretro
.
Variants§
NTSC = 0
A 30 frames/second (60 fields/second) video system.
PAL = 1
A 25 frames/second (50 fields/second) video system.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RetroRegion
impl RefUnwindSafe for RetroRegion
impl Send for RetroRegion
impl Sync for RetroRegion
impl Unpin for RetroRegion
impl UnwindSafe for RetroRegion
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