#[non_exhaustive]pub enum GoOS {
Show 18 variants
Aix,
Android,
Darwin,
Dragonfly,
Freebsd,
Hurd,
Illumos,
Ios,
Js,
Linux,
Nacl,
Netbsd,
Openbsd,
Plan9,
Solaris,
Wasip1,
Windows,
Zos,
}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.
Aix
Android
Darwin
Dragonfly
Freebsd
Hurd
Illumos
Ios
Js
Linux
Nacl
Netbsd
Openbsd
Plan9
Solaris
Wasip1
Windows
Zos
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GoOS
impl<'de> Deserialize<'de> for GoOS
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GoOS, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GoOS, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for GoOS
impl Serialize for GoOS
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for GoOS
Auto Trait Implementations§
impl Freeze for GoOS
impl RefUnwindSafe for GoOS
impl Send for GoOS
impl Sync for GoOS
impl Unpin for GoOS
impl UnsafeUnpin for GoOS
impl UnwindSafe for GoOS
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