pub struct GbaHeader {
pub start_code: [u8; 4],
pub game_title: [u8; 12],
pub game_code: [u8; 4],
pub maker_code: [u8; 2],
pub software_version: u8,
}Fields§
§start_code: [u8; 4]§game_title: [u8; 12]§game_code: [u8; 4]§maker_code: [u8; 2]§software_version: u8Trait Implementations§
Auto Trait Implementations§
impl Freeze for GbaHeader
impl RefUnwindSafe for GbaHeader
impl Send for GbaHeader
impl Sync for GbaHeader
impl Unpin for GbaHeader
impl UnwindSafe for GbaHeader
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