#[non_exhaustive]pub enum Env {
Show 21 variants
gnu,
libnx,
macabi,
mlibc,
msvc,
musl,
newlib,
none,
nto70,
nto71,
nto71_iosock,
nto80,
ohos,
p1,
p2,
p3,
relibc,
sgx,
sim,
uclibc,
v5,
}Variants (Non-exhaustive)§
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
libnx
macabi
mlibc
msvc
musl
newlib
none
nto70
nto71
nto71_iosock
nto80
ohos
p1
p2
p3
relibc
sgx
sim
uclibc
v5
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Env
impl<'de> Deserialize<'de> for Env
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for Env
impl Eq for Env
impl StructuralPartialEq for Env
Auto Trait Implementations§
impl Freeze for Env
impl RefUnwindSafe for Env
impl Send for Env
impl Sync for Env
impl Unpin for Env
impl UnsafeUnpin for Env
impl UnwindSafe for Env
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more