Trait gimli::write::Section[][src]

pub trait Section<W: Writer>: DerefMut<Target = W> {
    fn id(&self) -> SectionId;

    fn name(&self) -> &'static str { ... }
}
Expand description

Functionality common to all writable DWARF sections.

Required methods

Returns the DWARF section kind for this type.

Provided methods

Returns the ELF section name for this type.

Implementors