[][src]Enum libdw::AttributeValue

pub enum AttributeValue<'dw> {
    String(&'dw CStr),
    Unsigned(u64),
    Signed(i64),
    Address(u64),
    Die(Die<'dw>),
    Bytes(&'dw [u8]),
    Bool(bool),
    // some variants omitted
}

Variants

String(&'dw CStr)Unsigned(u64)Signed(i64)Address(u64)Die(Die<'dw>)Bytes(&'dw [u8])Bool(bool)

Trait Implementations

impl<'dw> Debug for AttributeValue<'dw>[src]

Auto Trait Implementations

impl<'dw> !Send for AttributeValue<'dw>

impl<'dw> Unpin for AttributeValue<'dw>

impl<'dw> !Sync for AttributeValue<'dw>

impl<'dw> !UnwindSafe for AttributeValue<'dw>

impl<'dw> !RefUnwindSafe for AttributeValue<'dw>

Blanket Implementations

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.

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

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

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