#[repr(u32)]pub enum cartridge_type_t {
CARTSIZE_1GB = 250,
CARTSIZE_2GB = 248,
CARTSIZE_4GB = 240,
CARTSIZE_8GB = 224,
CARTSIZE_16GB = 225,
CARTSIZE_32GB = 226,
}Variants§
CARTSIZE_1GB = 250
CARTSIZE_2GB = 248
CARTSIZE_4GB = 240
CARTSIZE_8GB = 224
CARTSIZE_16GB = 225
CARTSIZE_32GB = 226
Trait Implementations§
Source§impl Clone for cartridge_type_t
impl Clone for cartridge_type_t
Source§fn clone(&self) -> cartridge_type_t
fn clone(&self) -> cartridge_type_t
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for cartridge_type_t
impl Debug for cartridge_type_t
Source§impl Hash for cartridge_type_t
impl Hash for cartridge_type_t
Source§impl PartialEq for cartridge_type_t
impl PartialEq for cartridge_type_t
impl Copy for cartridge_type_t
impl Eq for cartridge_type_t
impl StructuralPartialEq for cartridge_type_t
Auto Trait Implementations§
impl Freeze for cartridge_type_t
impl RefUnwindSafe for cartridge_type_t
impl Send for cartridge_type_t
impl Sync for cartridge_type_t
impl Unpin for cartridge_type_t
impl UnwindSafe for cartridge_type_t
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