[][src]Struct symbolic_debuginfo::dwarf::DwarfSection

pub struct DwarfSection<'data> {
    pub address: u64,
    pub offset: u64,
    pub align: u64,
    pub data: Cow<'data, [u8]>,
}

DWARF section information including its data.

This is returned from objects implementing the Dwarf trait.

Fields

address: u64

Memory address of this section in virtual memory.

offset: u64

File offset of this section.

align: u64

Section address alignment (power of two).

data: Cow<'data, [u8]>

Binary data of this section.

Trait Implementations

impl<'data> Clone for DwarfSection<'data>[src]

impl<'_> Debug for DwarfSection<'_>[src]

Auto Trait Implementations

impl<'data> RefUnwindSafe for DwarfSection<'data>

impl<'data> Send for DwarfSection<'data>

impl<'data> Sync for DwarfSection<'data>

impl<'data> Unpin for DwarfSection<'data>

impl<'data> UnwindSafe for DwarfSection<'data>

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.