[][src]Enum pelite::rich_structure::ObjectKind

pub enum ObjectKind {
    Unknown,
    Link,
    Export,
    Import,
    Resource,
    Assembly,
    CPP,
    C,
}

Defines the kinds of objects.

Rich records can identify the product used and with it the 'language' of the objects. This allows a mapping of products and the kind of 'language' it was generated from.

Variants

Unknown
Export

Exported symbol.

Import

Imported symbol.

Resource

Resource object.

Assembly

Assembly object.

CPP

C++ object.

C

C object.

Trait Implementations

impl Eq for ObjectKind[src]

impl Clone for ObjectKind[src]

impl PartialEq<ObjectKind> for ObjectKind[src]

impl From<u16> for ObjectKind[src]

impl Copy for ObjectKind[src]

impl Debug for ObjectKind[src]

impl Serialize for ObjectKind[src]

Auto Trait Implementations

Blanket Implementations

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> From<T> for 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]