[][src]Struct symbolic::symcache::format::LineRecord

#[repr(C, packed)]pub struct LineRecord {
    pub addr_off: u8,
    pub file_id: u16,
    pub line: u16,
}

A mapping between instruction addresses and file / line information.

Fields

addr_off: u8

Offset to the previous line record, or function address for the first line.

file_id: u16

Index of the file record in the files segment.

line: u16

The line number of the line record.

Trait Implementations

impl Clone for LineRecord[src]

impl Copy for LineRecord[src]

impl Debug for LineRecord[src]

impl Default for LineRecord[src]

Auto Trait Implementations

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