[][src]Enum platforms::target::Env

#[non_exhaustive]pub enum Env {
    GNU,
    MSVC,
    Musl,
    SGX,
    uClibc,
    Unknown,
}

target_env: target enviroment that disambiguates the target platform by ABI / libc. This value is closely related to the fourth element of the platform target triple, though it is not identical. For example, embedded ABIs such as gnueabihf will simply define target_env as "gnu" (i.e. target::Env::GNU)

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GNU

gnu: The GNU C Library (glibc)

MSVC

msvc: Microsoft Visual C(++)

Musl

musl: Clean, efficient, standards-conformant libc implementation.

SGX

sgx: Intel Software Guard Extensions (SGX) Enclave

uClibc

uclibc: C library for developing embedded Linux systems

Unknown

Unknown target environment

Implementations

impl Env[src]

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

String representing this environment which matches #[cfg(target_env)]

Trait Implementations

impl Clone for Env[src]

impl Copy for Env[src]

impl Debug for Env[src]

impl Display for Env[src]

impl Eq for Env[src]

impl FromStr for Env[src]

type Err = Error

The associated error which can be returned from parsing.

fn from_str(env_name: &str) -> Result<Self, Self::Err>[src]

Create a new Env from the given string

impl Hash for Env[src]

impl Ord for Env[src]

impl PartialEq<Env> for Env[src]

impl PartialOrd<Env> for Env[src]

impl StructuralEq for Env[src]

impl StructuralPartialEq for Env[src]

Auto Trait Implementations

impl RefUnwindSafe for Env

impl Send for Env

impl Sync for Env

impl Unpin for Env

impl UnwindSafe for Env

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> ToString for T where
    T: Display + ?Sized
[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.