Struct goblin::pe::symbol::AuxSectionDefinition [−][src]
Auxiliary symbol record for section definitions.
Fields
length: u32
The size of section data; the same as size_of_raw_data
in the section header.
number_of_relocations: u16
The number of relocation entries for the section.
number_of_line_numbers: u16
The number of line-number entries for the section.
checksum: u32
The checksum for communal data.
It is applicable if the IMAGE_SCN_LNK_COMDAT
flag is set in the section header.
number: u16
One-based index into the section table for the associated section.
This is used when the selection
field is IMAGE_COMDAT_SELECT_ASSOCIATIVE
.
selection: u8
The COMDAT selection number.
This is applicable if the section is a COMDAT section.
unused: [u8; 3]
Unused padding.
Trait Implementations
impl Clone for AuxSectionDefinition
[src]
fn clone(&self) -> AuxSectionDefinition
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for AuxSectionDefinition
[src]
impl Debug for AuxSectionDefinition
[src]
impl Default for AuxSectionDefinition
[src]
fn default() -> AuxSectionDefinition
[src]
impl FromCtx<Endian, [u8]> for AuxSectionDefinition
[src]
impl<'a> IntoCtx<Endian, [u8]> for &'a AuxSectionDefinition
[src]
impl IntoCtx<Endian, [u8]> for AuxSectionDefinition
[src]
impl PartialEq<AuxSectionDefinition> for AuxSectionDefinition
[src]
fn eq(&self, other: &AuxSectionDefinition) -> bool
[src]
fn ne(&self, other: &AuxSectionDefinition) -> bool
[src]
impl SizeWith<Endian> for AuxSectionDefinition
[src]
impl StructuralPartialEq for AuxSectionDefinition
[src]
impl<'a> TryFromCtx<'a, Endian, [u8]> for AuxSectionDefinition where
AuxSectionDefinition: 'a,
[src]
AuxSectionDefinition: 'a,
type Error = Error
fn try_from_ctx(
src: &'a [u8],
ctx: Endian
) -> Result<(Self, usize), Self::Error>
[src]
src: &'a [u8],
ctx: Endian
) -> Result<(Self, usize), Self::Error>
impl<'a> TryIntoCtx<Endian, [u8]> for &'a AuxSectionDefinition
[src]
type Error = Error
fn try_into_ctx(self, dst: &mut [u8], ctx: Endian) -> Result<usize, Self::Error>
[src]
impl TryIntoCtx<Endian, [u8]> for AuxSectionDefinition
[src]
Auto Trait Implementations
impl RefUnwindSafe for AuxSectionDefinition
impl Send for AuxSectionDefinition
impl Sync for AuxSectionDefinition
impl Unpin for AuxSectionDefinition
impl UnwindSafe for AuxSectionDefinition
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,