#[non_exhaustive]
pub enum Env<'a> {
GNU,
MSVC,
Musl,
SGX,
uClibc,
Other(Cow<'a, str>),
}
Expand description
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. Env::GNU
)
This enum is marked as 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
: The GNU C Library (glibc)
msvc
: Microsoft Visual C(++)
musl
: Clean, efficient, standards-conformant libc implementation.
sgx
: Intel Software Guard Extensions (SGX) Enclave
uclibc
: C library for developing embedded Linux systems
Unknown target environment
String representing this environment which matches #[cfg(target_env)]
.
Gets the current target Env
.
Performs copy-assignment from source
. Read more
Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
Compares and returns the maximum of two values. Read more
Compares and returns the minimum of two values. Read more
Restrict a value to a certain interval. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String
. Read more
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.