Struct object::pe::ImageAuxSymbolSection

source ·
#[repr(C)]
pub struct ImageAuxSymbolSection { pub length: U32Bytes<LittleEndian>, pub number_of_relocations: U16Bytes<LittleEndian>, pub number_of_linenumbers: U16Bytes<LittleEndian>, pub check_sum: U32Bytes<LittleEndian>, pub number: U16Bytes<LittleEndian>, pub selection: u8, pub reserved: u8, pub high_number: U16Bytes<LittleEndian>, }
Expand description

Auxiliary symbol format 5: sections.

Used for both ImageSymbol and ImageSymbolEx (with padding).

Fields§

§length: U32Bytes<LittleEndian>

section length

§number_of_relocations: U16Bytes<LittleEndian>

number of relocation entries

§number_of_linenumbers: U16Bytes<LittleEndian>

number of line numbers

§check_sum: U32Bytes<LittleEndian>

checksum for communal

§number: U16Bytes<LittleEndian>

section number to associate with

§selection: u8

communal selection type

§reserved: u8§high_number: U16Bytes<LittleEndian>

high bits of the section number

Trait Implementations§

source§

impl Clone for ImageAuxSymbolSection

source§

fn clone(&self) -> ImageAuxSymbolSection

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ImageAuxSymbolSection

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for ImageAuxSymbolSection

source§

impl Pod for ImageAuxSymbolSection

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Copy,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.