Enum object::SectionFlags [−][src]
pub enum SectionFlags {
None,
Elf {
sh_flags: u64,
},
MachO {
flags: u32,
},
Coff {
characteristics: u32,
},
}Section flags that are specific to each file format.
Variants
No section flags.
ELF section flags.
Show fields
Fields of Elf
sh_flags: u64sh_flags field in the section header.
Mach-O section flags.
Show fields
Fields of MachO
flags: u32flags field in the section header.
COFF section flags.
Show fields
Fields of Coff
characteristics: u32Characteristics field in the section header.
Trait Implementations
impl Clone for SectionFlags[src]
impl Clone for SectionFlags[src]fn clone(&self) -> SectionFlags[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for SectionFlags[src]
impl Copy for SectionFlags[src]impl Eq for SectionFlags[src]
impl Eq for SectionFlags[src]impl PartialEq<SectionFlags> for SectionFlags[src]
impl PartialEq<SectionFlags> for SectionFlags[src]fn eq(&self, other: &SectionFlags) -> bool[src]
fn ne(&self, other: &SectionFlags) -> bool[src]
impl StructuralEq for SectionFlags[src]
impl StructuralEq for SectionFlags[src]impl StructuralPartialEq for SectionFlags[src]
impl StructuralPartialEq for SectionFlags[src]Auto Trait Implementations
impl RefUnwindSafe for SectionFlags
impl RefUnwindSafe for SectionFlagsimpl Send for SectionFlags
impl Send for SectionFlagsimpl Sync for SectionFlags
impl Sync for SectionFlagsimpl Unpin for SectionFlags
impl Unpin for SectionFlagsimpl UnwindSafe for SectionFlags
impl UnwindSafe for SectionFlags