pub struct Arm9BuildConfig {
pub offsets: Arm9Offsets,
pub encrypted: bool,
pub compressed: bool,
pub build_info: BuildInfo,
}Expand description
Config file for the ARM9 main module.
Fields§
§offsets: Arm9OffsetsVarious offsets within the ARM9 module.
encrypted: boolWhether this module is encrypted in the ROM.
compressed: boolWhether this module is compressed in the ROM.
build_info: BuildInfoBuild info for this module.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Arm9BuildConfig
impl<'de> Deserialize<'de> for Arm9BuildConfig
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 Arm9BuildConfig
impl RefUnwindSafe for Arm9BuildConfig
impl Send for Arm9BuildConfig
impl Sync for Arm9BuildConfig
impl Unpin for Arm9BuildConfig
impl UnsafeUnpin for Arm9BuildConfig
impl UnwindSafe for Arm9BuildConfig
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