Enum elfkit::section::SectionContent[][src]

pub enum SectionContent {
    None,
    Unloaded,
    Raw(Vec<u8>),
    Relocations(Vec<Relocation>),
    Symbols(Vec<Symbol>),
    Dynamic(Vec<Dynamic>),
    Strtab(Strtab),
}

Variants

Methods

impl SectionContent
[src]

Trait Implementations

impl Debug for SectionContent
[src]

Formats the value using the given formatter. Read more

impl Clone for SectionContent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for SectionContent
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations