[][src]Struct ddbug_parser::Section

pub struct Section<'input> { /* fields omitted */ }

A named section.

Implementations

impl<'input> Section<'input>[src]

pub fn name(&self) -> Option<&str>[src]

The name of this section.

pub fn segment(&self) -> Option<&str>[src]

The name of the segment containing this section, if applicable.

pub fn address(&self) -> Option<Range>[src]

The address range covered by this section if it is loadable.

pub fn size(&self) -> u64[src]

The size of the section.

Trait Implementations

impl<'input> Debug for Section<'input>[src]

Auto Trait Implementations

impl<'input> RefUnwindSafe for Section<'input>[src]

impl<'input> Send for Section<'input>[src]

impl<'input> Sync for Section<'input>[src]

impl<'input> Unpin for Section<'input>[src]

impl<'input> UnwindSafe for Section<'input>[src]

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