Struct lldb::SBLineEntry [] [src]

pub struct SBLineEntry {
    pub raw: SBLineEntryRef,
}

Specifies an association with a contiguous range of instructions and a source file location.

Fields

The underlying raw SBLineEntryRef.

Methods

impl SBLineEntry
[src]

[src]

Construct a new SBLineEntry.

[src]

Construct a new Some(SBLineEntry) or None.

[src]

Check whether or not this is a valid SBLineEntry value.

[src]

The start address for this line entry.

[src]

The end address for this line entry.

[src]

The file (SBFileSpec) for this line entry.

[src]

The 1-based line number for this line entry.

A return value of 0 indicates that no line information is available.

[src]

The 1-based column number for this line entry.

A return value of 0 indicates that no column information is available.

Trait Implementations

impl Debug for SBLineEntry
[src]

[src]

Formats the value using the given formatter.

impl Drop for SBLineEntry
[src]

[src]

Executes the destructor for this type. Read more