Struct symbolic_symcache::format::HeaderV1[][src]

#[repr(C, packed)]
pub struct HeaderV1 { pub preamble: Preamble, pub uuid: Uuid, 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>, }

DEPRECATED. Header used by V1 SymCaches.

Fields

preamble: Preamble

Version-independent preamble.

uuid: Uuid

Unique identifier of the object file. Does not support PDBs.

arch: u32

CPU architecture of the object file.

data_source: u8

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 Clone for HeaderV1[src]

impl Copy for HeaderV1[src]

impl Debug for HeaderV1[src]

impl Default for HeaderV1[src]

impl From<&'_ HeaderV1> 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.