[][src]Enum rustc_ap_rustc_session::utils::NativeLibraryKind

pub enum NativeLibraryKind {
    NativeStatic,
    NativeStaticNobundle,
    NativeFramework,
    NativeRawDylib,
    NativeUnknown,
}

Variants

NativeStatic

native static library (.a archive)

NativeStaticNobundle

native static library, which doesn't get bundled into .rlibs

NativeFramework

macOS-specific

NativeRawDylib

Windows dynamic library without import library.

NativeUnknown

default way to specify a dynamic library

Trait Implementations

impl Clone for NativeLibraryKind[src]

impl Copy for NativeLibraryKind[src]

impl Debug for NativeLibraryKind[src]

impl Decodable for NativeLibraryKind[src]

impl Encodable for NativeLibraryKind[src]

impl Eq for NativeLibraryKind[src]

impl Hash for NativeLibraryKind[src]

impl<CTX> HashStable<CTX> for NativeLibraryKind

impl Ord for NativeLibraryKind[src]

impl PartialEq<NativeLibraryKind> for NativeLibraryKind[src]

impl PartialOrd<NativeLibraryKind> for NativeLibraryKind[src]

impl StructuralEq for NativeLibraryKind[src]

impl StructuralPartialEq for NativeLibraryKind[src]

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<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<T> Decodable for T where
    T: UseSpecializedDecodable
[src]

impl<T> Encodable for T where
    T: UseSpecializedEncodable + ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<E> SpecializationError for E[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.