[−][src]Struct object::macho::Section32
32-bit section.
Fields
sectname: [u8; 16]
name of this section
segname: [u8; 16]
segment this section goes in
addr: U32<E>
memory address of this section
size: U32<E>
size in bytes of this section
offset: U32<E>
file offset of this section
align: U32<E>
section alignment (power of 2)
reloff: U32<E>
file offset of relocation entries
nreloc: U32<E>
number of relocation entries
flags: U32<E>
flags (section type and attributes)
reserved1: U32<E>
reserved (for offset or index)
reserved2: U32<E>
reserved (for count or sizeof)
Trait Implementations
impl<E: Clone + Endian> Clone for Section32<E>
[src]
fn clone(&self) -> Section32<E>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<E: Copy + Endian> Copy for Section32<E>
[src]
impl<E: Debug + Endian> Debug for Section32<E>
[src]
impl<E: Endian> Pod for Section32<E>
[src]
impl<Endian: Endian> Section for Section32<Endian>
[src]
type Word = u32
type Endian = Endian
fn sectname(&self) -> &[u8; 16]
[src]
fn segname(&self) -> &[u8; 16]
[src]
fn addr(&self, endian: Self::Endian) -> Self::Word
[src]
fn size(&self, endian: Self::Endian) -> Self::Word
[src]
fn offset(&self, endian: Self::Endian) -> u32
[src]
fn align(&self, endian: Self::Endian) -> u32
[src]
fn reloff(&self, endian: Self::Endian) -> u32
[src]
fn nreloc(&self, endian: Self::Endian) -> u32
[src]
fn flags(&self, endian: Self::Endian) -> u32
[src]
fn name(&self) -> &[u8]
[src]
fn segment_name(&self) -> &[u8]
[src]
fn file_range(&self, endian: Self::Endian) -> Option<(u64, u64)>
[src]
fn data<'data>(
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<Bytes<'data>, ()>
[src]
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<Bytes<'data>, ()>
fn relocations<'data>(
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<&'data [Relocation<Self::Endian>]>
[src]
&self,
endian: Self::Endian,
data: Bytes<'data>
) -> Result<&'data [Relocation<Self::Endian>]>
Auto Trait Implementations
impl<E> Send for Section32<E> where
E: Send,
E: Send,
impl<E> Sync for Section32<E> where
E: Sync,
E: Sync,
impl<E> Unpin for Section32<E> where
E: Unpin,
E: Unpin,
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,
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.
fn to_owned(&self) -> T
[src]
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.
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>,