pub struct RomConfigAlignment {
pub arm9: u32,
pub arm9_overlay_table: u32,
pub arm9_overlay: u32,
pub arm7: u32,
pub arm7_overlay_table: u32,
pub arm7_overlay: u32,
pub file_name_table: u32,
pub file_allocation_table: u32,
pub banner: u32,
pub file_image_block: u32,
pub file: u32,
}Expand description
Alignment of ROM sections.
Fields§
§arm9: u32Alignment of the ARM9 program.
arm9_overlay_table: u32Alignment of the ARM9 overlay table.
arm9_overlay: u32Alignment of each ARM9 overlay file.
arm7: u32Alignment of the ARM7 program.
arm7_overlay_table: u32Alignment of the ARM7 overlay table.
arm7_overlay: u32Alignment of each ARM7 overlay file.
file_name_table: u32Alignment of the file name table.
file_allocation_table: u32Alignment of the file allocation table.
Alignment of the banner.
file_image_block: u32Alignment of the file image block.
file: u32Alignment of each file.
Trait Implementations§
Source§impl Clone for RomConfigAlignment
impl Clone for RomConfigAlignment
Source§fn clone(&self) -> RomConfigAlignment
fn clone(&self) -> RomConfigAlignment
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<'de> Deserialize<'de> for RomConfigAlignment
impl<'de> Deserialize<'de> for RomConfigAlignment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RomConfigAlignment
impl RefUnwindSafe for RomConfigAlignment
impl Send for RomConfigAlignment
impl Sync for RomConfigAlignment
impl Unpin for RomConfigAlignment
impl UnwindSafe for RomConfigAlignment
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