Enum object::SectionFlags [−][src]
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
None
No section flags.
Elf
Fields
sh_flags: u64
sh_flags
field in the section header.
ELF section flags.
MachO
Fields
flags: u32
flags
field in the section header.
Mach-O section flags.
Coff
Fields
characteristics: u32
Characteristics
field in the section header.
COFF section flags.
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