[]Struct mach_object::SectionAttributes

pub struct SectionAttributes { /* fields omitted */ }

Constants for the section attributes part of the flags field of a section structure.

Methods

impl SectionAttributes

pub const SECTION_ATTRIBUTES_USR: SectionAttributes

User setable attributes

pub const S_ATTR_PURE_INSTRUCTIONS: SectionAttributes

section contains only true machine instructions

pub const S_ATTR_NO_TOC: SectionAttributes

section contains coalesced symbols that are not to be in a ranlib table of contents

pub const S_ATTR_STRIP_STATIC_SYMS: SectionAttributes

ok to strip static symbols in this section in files with the MH_DYLDLINK flag

pub const S_ATTR_NO_DEAD_STRIP: SectionAttributes

no dead stripping

pub const S_ATTR_LIVE_SUPPORT: SectionAttributes

blocks are live if they reference live blocks

pub const S_ATTR_SELF_MODIFYING_CODE: SectionAttributes

Used with i386 code stubs written on by dyld

pub const S_ATTR_DEBUG: SectionAttributes

a debug section

pub const SECTION_ATTRIBUTES_SYS: SectionAttributes

system setable attributes

pub const S_ATTR_SOME_INSTRUCTIONS: SectionAttributes

section contains some machine instructions

pub const S_ATTR_EXT_RELOC: SectionAttributes

section has external relocation entries

pub const S_ATTR_LOC_RELOC: SectionAttributes

section has local relocation entries

pub const fn empty() -> SectionAttributes

Returns an empty set of flags

pub const fn all() -> SectionAttributes

Returns the set containing all flags.

pub const fn bits(&self) -> u32

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<SectionAttributes>

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u32) -> SectionAttributes

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u32) -> SectionAttributes

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool

Returns true if all flags are currently set.

pub const fn intersects(&self, other: SectionAttributes) -> bool

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: SectionAttributes) -> bool

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: SectionAttributes)

Inserts the specified flags in-place.

pub fn remove(&mut self, other: SectionAttributes)

Removes the specified flags in-place.

pub fn toggle(&mut self, other: SectionAttributes)

Toggles the specified flags in-place.

pub fn set(&mut self, other: SectionAttributes, value: bool)

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Extend<SectionAttributes> for SectionAttributes

impl Clone for SectionAttributes

impl Copy for SectionAttributes

impl Eq for SectionAttributes

impl Ord for SectionAttributes

impl PartialEq<SectionAttributes> for SectionAttributes

impl PartialOrd<SectionAttributes> for SectionAttributes

impl Debug for SectionAttributes

impl Sub<SectionAttributes> for SectionAttributes

type Output = SectionAttributes

The resulting type after applying the - operator.

fn sub(self, other: SectionAttributes) -> SectionAttributes

Returns the set difference of the two sets of flags.

impl SubAssign<SectionAttributes> for SectionAttributes

fn sub_assign(&mut self, other: SectionAttributes)

Disables all flags enabled in the set.

impl Not for SectionAttributes

type Output = SectionAttributes

The resulting type after applying the ! operator.

fn not(self) -> SectionAttributes

Returns the complement of this set of flags.

impl BitAnd<SectionAttributes> for SectionAttributes

type Output = SectionAttributes

The resulting type after applying the & operator.

fn bitand(self, other: SectionAttributes) -> SectionAttributes

Returns the intersection between the two sets of flags.

impl BitOr<SectionAttributes> for SectionAttributes

type Output = SectionAttributes

The resulting type after applying the | operator.

fn bitor(self, other: SectionAttributes) -> SectionAttributes

Returns the union of the two sets of flags.

impl BitXor<SectionAttributes> for SectionAttributes

type Output = SectionAttributes

The resulting type after applying the ^ operator.

fn bitxor(self, other: SectionAttributes) -> SectionAttributes

Returns the left flags, but with all the right flags toggled.

impl BitAndAssign<SectionAttributes> for SectionAttributes

fn bitand_assign(&mut self, other: SectionAttributes)

Disables all flags disabled in the set.

impl BitOrAssign<SectionAttributes> for SectionAttributes

fn bitor_assign(&mut self, other: SectionAttributes)

Adds the set of flags.

impl BitXorAssign<SectionAttributes> for SectionAttributes

fn bitxor_assign(&mut self, other: SectionAttributes)

Toggles the set of flags.

impl Hash for SectionAttributes

impl StructuralPartialEq for SectionAttributes

impl StructuralEq for SectionAttributes

impl FromIterator<SectionAttributes> for SectionAttributes

impl Octal for SectionAttributes

impl Binary for SectionAttributes

impl LowerHex for SectionAttributes

impl UpperHex for SectionAttributes

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]