Struct buildsrs_common::entities::TargetTriple
source · pub struct TargetTriple(/* private fields */);
Expand description
Target triple, such as x86_64-unknown-linux-gnu
.
Implementations§
Trait Implementations§
source§impl Arbitrary for TargetTriple
impl Arbitrary for TargetTriple
§type Parameters = ()
type Parameters = ()
The type of parameters that
arbitrary_with
accepts for configuration
of the generated Strategy
. Parameters must implement Default
.§type Strategy = BoxedStrategy<TargetTriple>
type Strategy = BoxedStrategy<TargetTriple>
The type of
Strategy
used to generate values of type Self
.source§fn arbitrary_with(args: <Self as Arbitrary>::Parameters) -> Self::Strategy
fn arbitrary_with(args: <Self as Arbitrary>::Parameters) -> Self::Strategy
source§impl Clone for TargetTriple
impl Clone for TargetTriple
source§fn clone(&self) -> TargetTriple
fn clone(&self) -> TargetTriple
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 TargetTriple
impl Debug for TargetTriple
source§impl<'de> Deserialize<'de> for TargetTriple
impl<'de> Deserialize<'de> for TargetTriple
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 Hash for TargetTriple
impl Hash for TargetTriple
source§impl Ord for TargetTriple
impl Ord for TargetTriple
source§fn cmp(&self, other: &TargetTriple) -> Ordering
fn cmp(&self, other: &TargetTriple) -> Ordering
1.21.0 · 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 PartialEq for TargetTriple
impl PartialEq for TargetTriple
source§fn eq(&self, other: &TargetTriple) -> bool
fn eq(&self, other: &TargetTriple) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for TargetTriple
impl PartialOrd for TargetTriple
source§fn partial_cmp(&self, other: &TargetTriple) -> Option<Ordering>
fn partial_cmp(&self, other: &TargetTriple) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for TargetTriple
impl Serialize for TargetTriple
impl Eq for TargetTriple
impl StructuralEq for TargetTriple
impl StructuralPartialEq for TargetTriple
Auto Trait Implementations§
impl RefUnwindSafe for TargetTriple
impl Send for TargetTriple
impl Sync for TargetTriple
impl Unpin for TargetTriple
impl UnwindSafe for TargetTriple
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