Struct build_info_common::TargetInfo
source · pub struct TargetInfo {
pub triple: String,
pub family: String,
pub os: String,
pub cpu: CpuInfo,
}Fields§
§triple: StringIdentifies the target architecture for which the crate is being compiled
family: StringA generic description of the target, e.g., "unix" or "wasm"
os: StringThe target OS
cpu: CpuInfoThe target CPU
Trait Implementations§
source§impl Clone for TargetInfo
impl Clone for TargetInfo
source§fn clone(&self) -> TargetInfo
fn clone(&self) -> TargetInfo
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 TargetInfo
impl Debug for TargetInfo
source§impl Display for TargetInfo
impl Display for TargetInfo
source§impl Hash for TargetInfo
impl Hash for TargetInfo
source§impl Ord for TargetInfo
impl Ord for TargetInfo
source§fn cmp(&self, other: &TargetInfo) -> Ordering
fn cmp(&self, other: &TargetInfo) -> 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<TargetInfo> for TargetInfo
impl PartialEq<TargetInfo> for TargetInfo
source§fn eq(&self, other: &TargetInfo) -> bool
fn eq(&self, other: &TargetInfo) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<TargetInfo> for TargetInfo
impl PartialOrd<TargetInfo> for TargetInfo
source§fn partial_cmp(&self, other: &TargetInfo) -> Option<Ordering>
fn partial_cmp(&self, other: &TargetInfo) -> 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 moreimpl Eq for TargetInfo
impl StructuralEq for TargetInfo
impl StructuralPartialEq for TargetInfo
Auto Trait Implementations§
impl RefUnwindSafe for TargetInfo
impl Send for TargetInfo
impl Sync for TargetInfo
impl Unpin for TargetInfo
impl UnwindSafe for TargetInfo
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