Trait gimli::LineNumberProgram[][src]

pub trait LineNumberProgram<R: Reader> {
    fn header(&self) -> &LineNumberProgramHeader<R>;
fn add_file(&mut self, file: FileEntry<R>); }

A LineNumberProgram provides access to a LineNumberProgramHeader and a way to add files to the files table if necessary. Gimli consumers should never need to use or see this trait.

Required Methods

Get a reference to the held LineNumberProgramHeader.

Add a file to the file table if necessary.

Implementors