Enum lief::macho::section::Type

pub enum Type {
Show 24 variants REGULAR, ZEROFILL, CSTRING_LITERALS, S_4BYTE_LITERALS, S_8BYTE_LITERALS, LITERAL_POINTERS, NON_LAZY_SYMBOL_POINTERS, LAZY_SYMBOL_POINTERS, SYMBOL_STUBS, MOD_INIT_FUNC_POINTERS, MOD_TERM_FUNC_POINTERS, COALESCED, GB_ZEROFILL, INTERPOSING, S_16BYTE_LITERALS, DTRACE_DOF, LAZY_DYLIB_SYMBOL_POINTERS, THREAD_LOCAL_REGULAR, THREAD_LOCAL_ZEROFILL, THREAD_LOCAL_VARIABLES, THREAD_LOCAL_VARIABLE_POINTERS, THREAD_LOCAL_INIT_FUNCTION_POINTERS, INIT_FUNC_OFFSETS, UNKNOWN(u64),
}

Variants§

§

REGULAR

Regular section.

§

ZEROFILL

Zero fill on demand section.

§

CSTRING_LITERALS

Section with literal C strings.

§

S_4BYTE_LITERALS

Section with 4 byte literals.

§

S_8BYTE_LITERALS

Section with 8 byte literals.

§

LITERAL_POINTERS

Section with pointers to literals.

§

NON_LAZY_SYMBOL_POINTERS

Section with non-lazy symbol pointers.

§

LAZY_SYMBOL_POINTERS

Section with lazy symbol pointers.

§

SYMBOL_STUBS

Section with symbol stubs, byte size of stub in the Reserved2 field.

§

MOD_INIT_FUNC_POINTERS

Section with only function pointers for initialization.

§

MOD_TERM_FUNC_POINTERS

Section with only function pointers for termination.

§

COALESCED

Section contains symbols that are to be coalesced.

§

GB_ZEROFILL

Zero fill on demand section (that can be larger than 4 gigabytes).

§

INTERPOSING

Section with only pairs of function pointers for interposing.

§

S_16BYTE_LITERALS

Section with only 16 byte literals.

§

DTRACE_DOF

Section contains DTrace Object Format.

§

LAZY_DYLIB_SYMBOL_POINTERS

Section with lazy symbol pointers to lazy loaded dylibs.

§

THREAD_LOCAL_REGULAR

Thread local data section.

§

THREAD_LOCAL_ZEROFILL

Thread local zerofill section.

§

THREAD_LOCAL_VARIABLES

Section with thread local variable structure data.

§

THREAD_LOCAL_VARIABLE_POINTERS

Section with pointers to thread local structures.

§

THREAD_LOCAL_INIT_FUNCTION_POINTERS

Section with thread local variable initialization pointers to functions.

§

INIT_FUNC_OFFSETS

Section with 32-bit offsets to initializer functions

§

UNKNOWN(u64)

Trait Implementations§

§

impl Clone for Type

§

fn clone(&self) -> Type

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
§

impl Debug for Type

§

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

Formats the value using the given formatter. Read more
§

impl From<u64> for Type

§

fn from(value: u64) -> Self

Converts to this type from the input type.
§

impl Hash for Type

§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl PartialEq<Type> for Type

§

fn eq(&self, other: &Type) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Copy for Type

§

impl Eq for Type

§

impl StructuralEq for Type

§

impl StructuralPartialEq for Type

Auto Trait Implementations§

§

impl RefUnwindSafe for Type

§

impl Send for Type

§

impl Sync for Type

§

impl Unpin for Type

§

impl UnwindSafe for Type

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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 Twhere 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.