[][src]Struct gimli::write::DebugAbbrev

pub struct DebugAbbrev<W: Writer>(pub W);

A writable .debug_abbrev section.

Methods

impl<W: Writer> DebugAbbrev<W>[src]

pub fn offset(&self) -> DebugAbbrevOffset[src]

Return the offset of the next write.

Trait Implementations

impl<W: Debug + Writer> Debug for DebugAbbrev<W>[src]

impl<W: Default + Writer> Default for DebugAbbrev<W>[src]

impl<W: Writer> Deref for DebugAbbrev<W>[src]

type Target = W

The resulting type after dereferencing.

impl<W: Writer> DerefMut for DebugAbbrev<W>[src]

impl<W: Writer> From<W> for DebugAbbrev<W>[src]

impl<W: Writer> Section<W> for DebugAbbrev<W>[src]

Auto Trait Implementations

impl<W> RefUnwindSafe for DebugAbbrev<W> where
    W: RefUnwindSafe

impl<W> Send for DebugAbbrev<W> where
    W: Send

impl<W> Sync for DebugAbbrev<W> where
    W: Sync

impl<W> Unpin for DebugAbbrev<W> where
    W: Unpin

impl<W> UnwindSafe for DebugAbbrev<W> where
    W: UnwindSafe

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<!> for T[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.