[][src]Struct metagoblin::pe::symbol::AuxWeakExternal

#[repr(C)]pub struct AuxWeakExternal {
    pub tag_index: u32,
    pub characteristics: u32,
    pub unused: [u8; 10],
}

Auxiliary symbol record for weak external symbols.

Fields

tag_index: u32

The symbol-table index of the symbol to be linked if an external definition is not found.

characteristics: u32

Flags that control how the symbol should be linked.

unused: [u8; 10]

Unused padding.

Trait Implementations

impl Clone for AuxWeakExternal[src]

impl Copy for AuxWeakExternal[src]

impl Debug for AuxWeakExternal[src]

impl Default for AuxWeakExternal[src]

impl FromCtx<Endian, [u8]> for AuxWeakExternal[src]

impl<'a> IntoCtx<Endian, [u8]> for &'a AuxWeakExternal[src]

impl IntoCtx<Endian, [u8]> for AuxWeakExternal[src]

impl PartialEq<AuxWeakExternal> for AuxWeakExternal[src]

impl SizeWith<Endian> for AuxWeakExternal[src]

impl StructuralPartialEq for AuxWeakExternal[src]

impl<'a> TryFromCtx<'a, Endian, [u8]> for AuxWeakExternal where
    AuxWeakExternal: 'a, 
[src]

type Error = Error

impl<'a> TryIntoCtx<Endian, [u8]> for &'a AuxWeakExternal[src]

type Error = Error

impl TryIntoCtx<Endian, [u8]> for AuxWeakExternal[src]

type Error = Error

Auto Trait Implementations

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.