Struct goblin::mach::load_command::Section32

source ·
#[repr(C)]
pub struct Section32 { pub sectname: [u8; 16], pub segname: [u8; 16], pub addr: u32, pub size: u32, pub offset: u32, pub align: u32, pub reloff: u32, pub nreloc: u32, pub flags: u32, pub reserved1: u32, pub reserved2: u32, }

Fields§

§sectname: [u8; 16]

name of this section

§segname: [u8; 16]

segment this section goes in

§addr: u32

memory address of this section

§size: u32

size in bytes of this section

§offset: u32

file offset of this section

§align: u32

section alignment (power of 2)

§reloff: u32

file offset of relocation entries

§nreloc: u32

number of relocation entries

§flags: u32

flags (section type and attributes)

§reserved1: u32

reserved (for offset or index)

§reserved2: u32

reserved (for count or sizeof)

Trait Implementations§

source§

impl Clone for Section32

source§

fn clone(&self) -> Section32

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 Section32

source§

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

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

impl From<Section> for Section32

source§

fn from(section: Section) -> Self

Converts to this type from the input type.
source§

impl From<Section32> for Section

source§

fn from(section: Section32) -> Self

Converts to this type from the input type.
source§

impl FromCtx<Endian> for Section32

source§

fn from_ctx(src: &[u8], ctx: Endian) -> Self

source§

impl<'a> IntoCtx<Endian> for &'a Section32

source§

fn into_ctx(self, dst: &mut [u8], ctx: Endian)

source§

impl IntoCtx<Endian> for Section32

source§

fn into_ctx(self, dst: &mut [u8], ctx: Endian)

source§

impl SizeWith<Endian> for Section32

source§

impl<'a> TryFromCtx<'a, Endian> for Section32
where Section32: 'a,

§

type Error = Error

source§

fn try_from_ctx( src: &'a [u8], ctx: Endian ) -> Result<(Self, usize), Self::Error>

source§

impl<'a> TryIntoCtx<Endian> for &'a Section32

§

type Error = Error

source§

fn try_into_ctx(self, dst: &mut [u8], ctx: Endian) -> Result<usize, Self::Error>

source§

impl TryIntoCtx<Endian> for Section32

§

type Error = Error

source§

fn try_into_ctx(self, dst: &mut [u8], ctx: Endian) -> Result<usize, Self::Error>

source§

impl Copy for Section32

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> 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.