[][src]Struct gimli::write::DebugInfo

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

A writable .debug_info section.

Methods

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

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

Return the offset of the next write.

Trait Implementations

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

fn name(&self) -> &'static str[src]

Returns the ELF section name for this type.

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

type Target = W

The resulting type after dereferencing.

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

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

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

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]