[][src]Struct symbolic_debuginfo::LineInfo

pub struct LineInfo<'data> {
    pub address: u64,
    pub file: FileInfo<'data>,
    pub line: u64,
}

File and line number mapping for an instruction address.

Fields

address: u64

The instruction address relative to the image base (load address).

file: FileInfo<'data>

File name and path.

line: u64

Absolute line number starting at 1. Zero means no line number.

Trait Implementations

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

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

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

Auto Trait Implementations

impl<'data> Unpin for LineInfo<'data>

impl<'data> Send for LineInfo<'data>

impl<'data> Sync for LineInfo<'data>

impl<'data> RefUnwindSafe for LineInfo<'data>

impl<'data> UnwindSafe for LineInfo<'data>

Blanket Implementations

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, 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.

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

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

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