[][src]Struct symbolic_symcache::format::Header

pub struct Header {
    pub preamble: Preamble,
    pub debug_id: DebugId,
    pub arch: u32,
    pub data_source: u8,
    pub has_line_records: u8,
    pub symbols: Seg<Seg<u8, u16>>,
    pub files: Seg<FileRecord, u16>,
    pub functions: Seg<FuncRecord>,
}

Version independent representation of the header.

Fields

preamble: Preamble

Version-independent preamble.

debug_id: DebugId

Debug identifier of the object file.

arch: u32

CPU architecture of the debug file.

data_source: u8

DEPRECATED. Type of debug information that was used to create this SymCache.

has_line_records: u8

Flag, whether this cache has line records.

symbols: Seg<Seg<u8, u16>>

Segment containing symbol names.

files: Seg<FileRecord, u16>

Segment containing file records.

functions: Seg<FuncRecord>

Segment containing function records.

Methods

impl Header[src]

pub fn parse(data: &[u8]) -> Result<Self, SymCacheError>[src]

Parses the correct version of the SymCache Header.

Trait Implementations

impl<'_> From<&'_ HeaderV1> for Header[src]

impl<'_> From<&'_ HeaderV2> for Header[src]

impl Clone for Header[src]

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

Performs copy-assignment from source. Read more

impl Debug for Header[src]

Auto Trait Implementations

impl Send for Header

impl Sync for Header

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T