pub enum TargetOs {
Linux,
MacOs,
Windows,
}Expand description
The platform a compilation covers, or that a code site requires.
Variants§
Linux
Linux — every compiling job in this repository’s CI.
MacOs
macOS. Nothing in CI compiles it; see the module docs.
Windows
Windows.
Trait Implementations§
impl Copy for TargetOs
Source§impl<'de> Deserialize<'de> for TargetOs
impl<'de> Deserialize<'de> for TargetOs
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 Eq for TargetOs
Source§impl Ord for TargetOs
impl Ord for TargetOs
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for TargetOs
impl PartialOrd for TargetOs
impl StructuralPartialEq for TargetOs
Auto Trait Implementations§
impl Freeze for TargetOs
impl RefUnwindSafe for TargetOs
impl Send for TargetOs
impl Sync for TargetOs
impl Unpin for TargetOs
impl UnsafeUnpin for TargetOs
impl UnwindSafe for TargetOs
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.