Struct object::pe::ImageRomOptionalHeader
source · [−]#[repr(C)]pub struct ImageRomOptionalHeader {Show 13 fields
pub magic: U16<LE>,
pub major_linker_version: u8,
pub minor_linker_version: u8,
pub size_of_code: U32<LE>,
pub size_of_initialized_data: U32<LE>,
pub size_of_uninitialized_data: U32<LE>,
pub address_of_entry_point: U32<LE>,
pub base_of_code: U32<LE>,
pub base_of_data: U32<LE>,
pub base_of_bss: U32<LE>,
pub gpr_mask: U32<LE>,
pub cpr_mask: [U32<LE>; 4],
pub gp_value: U32<LE>,
}
Fields
magic: U16<LE>
major_linker_version: u8
minor_linker_version: u8
size_of_code: U32<LE>
size_of_initialized_data: U32<LE>
size_of_uninitialized_data: U32<LE>
address_of_entry_point: U32<LE>
base_of_code: U32<LE>
base_of_data: U32<LE>
base_of_bss: U32<LE>
gpr_mask: U32<LE>
cpr_mask: [U32<LE>; 4]
gp_value: U32<LE>
Trait Implementations
sourceimpl Clone for ImageRomOptionalHeader
impl Clone for ImageRomOptionalHeader
sourcefn clone(&self) -> ImageRomOptionalHeader
fn clone(&self) -> ImageRomOptionalHeader
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ImageRomOptionalHeader
impl Debug for ImageRomOptionalHeader
impl Copy for ImageRomOptionalHeader
impl Pod for ImageRomOptionalHeader
Auto Trait Implementations
impl RefUnwindSafe for ImageRomOptionalHeader
impl Send for ImageRomOptionalHeader
impl Sync for ImageRomOptionalHeader
impl Unpin for ImageRomOptionalHeader
impl UnwindSafe for ImageRomOptionalHeader
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more