Struct gimli::read::IncompleteLineProgram
source · pub struct IncompleteLineProgram<R, Offset = <R as Reader>::Offset>where
R: Reader<Offset = Offset>,
Offset: ReaderOffset,{ /* private fields */ }
Expand description
A line number program that has not been run to completion.
Implementations§
source§impl<R, Offset> IncompleteLineProgram<R, Offset>where
R: Reader<Offset = Offset>,
Offset: ReaderOffset,
impl<R, Offset> IncompleteLineProgram<R, Offset>where
R: Reader<Offset = Offset>,
Offset: ReaderOffset,
sourcepub fn header(&self) -> &LineProgramHeader<R, Offset>
pub fn header(&self) -> &LineProgramHeader<R, Offset>
Retrieve the LineProgramHeader
for this program.
sourcepub fn rows(self) -> LineRows<R, IncompleteLineProgram<R, Offset>, Offset>
pub fn rows(self) -> LineRows<R, IncompleteLineProgram<R, Offset>, Offset>
Construct a new LineRows
for executing this program to iterate
over rows in the line information matrix.
sourcepub fn sequences(
self
) -> Result<(CompleteLineProgram<R, Offset>, Vec<LineSequence<R>>)>
pub fn sequences(
self
) -> Result<(CompleteLineProgram<R, Offset>, Vec<LineSequence<R>>)>
Execute the line number program, completing the IncompleteLineProgram
into a CompleteLineProgram
and producing an array of sequences within
the line number program that can later be used with
CompleteLineProgram::resume_from
.
use gimli::{IncompleteLineProgram, EndianSlice, NativeEndian};
fn get_line_number_program<'a>() -> IncompleteLineProgram<EndianSlice<'a, NativeEndian>> {
// Get a line number program from some offset in a
// `.debug_line` section...
}
let program = get_line_number_program();
let (program, sequences) = program.sequences().unwrap();
println!("There are {} sequences in this line number program", sequences.len());
Trait Implementations§
source§impl<R, Offset> Clone for IncompleteLineProgram<R, Offset>where
R: Reader<Offset = Offset> + Clone,
Offset: ReaderOffset + Clone,
impl<R, Offset> Clone for IncompleteLineProgram<R, Offset>where
R: Reader<Offset = Offset> + Clone,
Offset: ReaderOffset + Clone,
source§fn clone(&self) -> IncompleteLineProgram<R, Offset>
fn clone(&self) -> IncompleteLineProgram<R, Offset>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more