Struct symbolic_debuginfo::breakpad::BreakpadPublicRecord[][src]

pub struct BreakpadPublicRecord<'d> {
    pub multiple: bool,
    pub address: u64,
    pub parameter_size: u64,
    pub name: &'d str,
}

A public function symbol record.

Example: PUBLIC m 2160 0 Public2_1

Fields

multiple: bool

Whether this symbol was referenced multiple times.

address: u64

The address of this symbol relative to the image base (load address).

parameter_size: u64

The size of the parameters on the runtime stack.

name: &'d str

The demangled function name of the symbol.

Implementations

impl<'d> BreakpadPublicRecord<'d>[src]

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

Parses a public record from a single line.

Trait Implementations

impl<'d> Clone for BreakpadPublicRecord<'d>[src]

impl<'d> Debug for BreakpadPublicRecord<'d>[src]

impl<'d> Default for BreakpadPublicRecord<'d>[src]

impl<'d> Eq for BreakpadPublicRecord<'d>[src]

impl<'d> PartialEq<BreakpadPublicRecord<'d>> for BreakpadPublicRecord<'d>[src]

impl<'d> StructuralEq for BreakpadPublicRecord<'d>[src]

impl<'d> StructuralPartialEq for BreakpadPublicRecord<'d>[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.