pub enum CommonTriple {
Common {
arch: CommonArch,
platform: CommonPlatform,
},
Custom(Triple),
}
Variants§
Implementations§
Source§impl CommonTriple
impl CommonTriple
pub const X86_64_WINDOWS_MSVC: Self
pub const X86_64_LINUX_GNU: Self
pub const X86_64_LINUX_MUSL: Self
pub const AARCH64_WINDOWS_MSVC: Self
pub const AARCH64_LINUX_GNU: Self
pub const AARCH64_LINUX_MUSL: Self
Source§impl CommonTriple
impl CommonTriple
pub fn as_triple(&self) -> Triple
pub fn common_arch(&self) -> Option<CommonArch>
Trait Implementations§
Source§impl Clone for CommonTriple
impl Clone for CommonTriple
Source§fn clone(&self) -> CommonTriple
fn clone(&self) -> CommonTriple
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CommonTriple
impl Debug for CommonTriple
Source§impl<'de> Deserialize<'de> for CommonTriple
impl<'de> Deserialize<'de> for CommonTriple
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
Source§impl Display for CommonTriple
impl Display for CommonTriple
Source§impl Ord for CommonTriple
impl Ord for CommonTriple
Source§impl PartialEq for CommonTriple
impl PartialEq for CommonTriple
Source§impl PartialOrd for CommonTriple
impl PartialOrd for CommonTriple
Source§impl Serialize for CommonTriple
impl Serialize for CommonTriple
impl Eq for CommonTriple
impl StructuralPartialEq for CommonTriple
Auto Trait Implementations§
impl Freeze for CommonTriple
impl RefUnwindSafe for CommonTriple
impl Send for CommonTriple
impl Sync for CommonTriple
impl Unpin for CommonTriple
impl UnwindSafe for CommonTriple
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,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more