Struct symbolic_symcache::LineInfo[][src]

pub struct LineInfo<'a> { /* fields omitted */ }

Information on a matched source line.

Implementations

impl<'a> LineInfo<'a>[src]

pub fn arch(&self) -> Arch[src]

Architecture of the image referenced by this line.

pub fn debug_id(&self) -> DebugId[src]

Debug identifier of the image referenced by this line.

pub fn function_address(&self) -> u64[src]

The instruction address where the enclosing function starts.

pub fn line_address(&self) -> u64[src]

The instruction address where the line starts.

pub fn instruction_address(&self) -> u64[src]

The actual instruction address.

pub fn compilation_dir(&self) -> &'a str[src]

The compilation directory of the function.

pub fn base_dir(&self) -> &'a str[src]

The base dir of the current line.

pub fn filename(&self) -> &'a str[src]

The filename of the current line.

pub fn path(&self) -> String[src]

The joined path and file name relative to the compilation directory.

pub fn abs_path(&self) -> String[src]

The fully joined absolute path including the compilation directory.

pub fn line(&self) -> u32[src]

The line number within the file.

pub fn language(&self) -> Language[src]

The source code language.

pub fn symbol(&self) -> &'a str[src]

The string value of the symbol (mangled).

pub fn function_name(&self) -> Name<'a>[src]

The name of the function suitable for demangling.

Use symbolic::demangle for demangling this symbol.

Trait Implementations

impl<'a> Clone for LineInfo<'a>[src]

impl<'a> Debug for LineInfo<'a>[src]

impl Display for LineInfo<'_>[src]

impl<'a> Eq for LineInfo<'a>[src]

impl<'a> PartialEq<LineInfo<'a>> for LineInfo<'a>[src]

impl<'a> StructuralEq for LineInfo<'a>[src]

impl<'a> StructuralPartialEq for LineInfo<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for LineInfo<'a>

impl<'a> Send for LineInfo<'a>

impl<'a> Sync for LineInfo<'a>

impl<'a> Unpin for LineInfo<'a>

impl<'a> UnwindSafe for LineInfo<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.