Enum object::SectionFlags [−][src]
#[non_exhaustive] pub enum SectionFlags { None, Elf { sh_flags: u64, }, MachO { flags: u32, }, Coff { characteristics: u32, }, }
Expand description
Section flags that are specific to each file format.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
No section flags.
ELF section flags.
Fields of Elf
sh_flags: u64
sh_flags
field in the section header.
Mach-O section flags.
Fields of MachO
flags: u32
flags
field in the section header.
COFF section flags.
Fields of Coff
characteristics: u32
Characteristics
field in the section header.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for SectionFlags
impl Send for SectionFlags
impl Sync for SectionFlags
impl Unpin for SectionFlags
impl UnwindSafe for SectionFlags
Blanket Implementations
Mutably borrows from an owned value. Read more