[][src]Struct symbolic_symcache::format::HeaderV2

#[repr(C, packed)]
pub struct HeaderV2 { 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>, }

Header used by V2 SymCaches.

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.

Trait Implementations

impl Copy for HeaderV2[src]

impl Default for HeaderV2[src]

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

impl Clone for HeaderV2[src]

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

Performs copy-assignment from source. Read more

impl Debug for HeaderV2[src]

Auto Trait Implementations

impl Send for HeaderV2

impl Sync for HeaderV2

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