[][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>, u32>,
    pub files: Seg<FileRecord, u16>,
    pub functions: Seg<FuncRecord, u32>,
}

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

Segment containing symbol names.

files: Seg<FileRecord, u16>

Segment containing file records.

functions: Seg<FuncRecord, u32>

Segment containing function records.

Implementations

impl Header[src]

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

Parses the correct version of the SymCache Header.

Trait Implementations

impl Clone for Header[src]

impl Debug for Header[src]

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

impl<'_> From<&'_ HeaderV2> for Header[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.