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

SECTION_ATTRIBUTES_USR: SectionAttributes = SectionAttributes{bits: 4278190080,}

User setable attributes

S_ATTR_PURE_INSTRUCTIONS: SectionAttributes = SectionAttributes{bits: 2147483648,}

section contains only true machine instructions

S_ATTR_NO_TOC: SectionAttributes = SectionAttributes{bits: 1073741824,}

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

S_ATTR_STRIP_STATIC_SYMS: SectionAttributes = SectionAttributes{bits: 536870912,}

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

S_ATTR_NO_DEAD_STRIP: SectionAttributes = SectionAttributes{bits: 268435456,}

no dead stripping

S_ATTR_LIVE_SUPPORT: SectionAttributes = SectionAttributes{bits: 134217728,}

blocks are live if they reference live blocks

S_ATTR_SELF_MODIFYING_CODE: SectionAttributes = SectionAttributes{bits: 67108864,}

Used with i386 code stubs written on by dyld

S_ATTR_DEBUG: SectionAttributes = SectionAttributes{bits: 33554432,}

a debug section

SECTION_ATTRIBUTES_SYS: SectionAttributes = SectionAttributes{bits: 16776960,}

system setable attributes

S_ATTR_SOME_INSTRUCTIONS: SectionAttributes = SectionAttributes{bits: 1024,}

section contains some machine instructions

S_ATTR_EXT_RELOC: SectionAttributes = SectionAttributes{bits: 512,}

section has external relocation entries

S_ATTR_LOC_RELOC: SectionAttributes = SectionAttributes{bits: 256,}

section has local relocation entries

Returns an empty set of flags.

Returns the set containing all flags.

Returns the raw value of the flags currently stored.

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

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

Returns true if no flags are currently stored.

Returns true if all flags are currently set.

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

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

Inserts the specified flags in-place.

Removes the specified flags in-place.

Toggles the specified flags in-place.

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

Trait Implementations

impl Copy for SectionAttributes

impl PartialEq for SectionAttributes

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for SectionAttributes

impl Clone for SectionAttributes

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialOrd for SectionAttributes

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for SectionAttributes

This method returns an Ordering between self and other. Read more

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

impl Hash for SectionAttributes

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

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

impl Debug for SectionAttributes

Formats the value using the given formatter.

impl Binary for SectionAttributes

Formats the value using the given formatter.

impl Octal for SectionAttributes

Formats the value using the given formatter.

impl LowerHex for SectionAttributes

Formats the value using the given formatter.

impl UpperHex for SectionAttributes

Formats the value using the given formatter.

impl BitOr for SectionAttributes

The resulting type after applying the | operator.

Returns the union of the two sets of flags.

impl BitOrAssign for SectionAttributes

Adds the set of flags.

impl BitXor for SectionAttributes

The resulting type after applying the ^ operator.

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

impl BitXorAssign for SectionAttributes

Toggles the set of flags.

impl BitAnd for SectionAttributes

The resulting type after applying the & operator.

Returns the intersection between the two sets of flags.

impl BitAndAssign for SectionAttributes

Disables all flags disabled in the set.

impl Sub for SectionAttributes

The resulting type after applying the - operator.

Returns the set difference of the two sets of flags.

impl SubAssign for SectionAttributes

Disables all flags enabled in the set.

impl Not for SectionAttributes

The resulting type after applying the ! operator.

Returns the complement of this set of flags.

impl Extend<SectionAttributes> for SectionAttributes

Extends a collection with the contents of an iterator. Read more

impl FromIterator<SectionAttributes> for SectionAttributes

Creates a value from an iterator. Read more