[−][src]Struct cfg_expr::targets::TargetInfo
Contains information regarding a particular target known to rustc
Fields
triple: &'a strThe target's unique identifier
os: Option<Os<'a>>The target's operating system, if any. Used by the target_os predicate.
arch: Arch<'a>The target's CPU architecture. Used by the target_arch predicate.
env: Option<Env<'a>>The target's ABI/libc used, if any. Used by the target_env predicate.
vendor: Option<Vendor<'a>>The target's vendor, if any. Used by the target_vendor predicate.
family: Option<Family>The target's family, if any. Used by the target_family predicate.
pointer_width: u8The size of the target's pointer type. Used by the target_pointer_width predicate.
endian: EndianThe target's endianness. Used by the target_endian predicate.
Trait Implementations
impl<'a> Clone for TargetInfo<'a>[src]
pub fn clone(&self) -> TargetInfo<'a>[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<'a> Debug for TargetInfo<'a>[src]
impl<'a> Eq for TargetInfo<'a>[src]
impl<'a> Hash for TargetInfo<'a>[src]
pub fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl<'a> Ord for TargetInfo<'a>[src]
pub fn cmp(&self, other: &TargetInfo<'a>) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl<'a> PartialEq<TargetInfo<'a>> for TargetInfo<'a>[src]
pub fn eq(&self, other: &TargetInfo<'a>) -> bool[src]
pub fn ne(&self, other: &TargetInfo<'a>) -> bool[src]
impl<'a> PartialOrd<TargetInfo<'a>> for TargetInfo<'a>[src]
pub fn partial_cmp(&self, other: &TargetInfo<'a>) -> Option<Ordering>[src]
pub fn lt(&self, other: &TargetInfo<'a>) -> bool[src]
pub fn le(&self, other: &TargetInfo<'a>) -> bool[src]
pub fn gt(&self, other: &TargetInfo<'a>) -> bool[src]
pub fn ge(&self, other: &TargetInfo<'a>) -> bool[src]
impl<'a> StructuralEq for TargetInfo<'a>[src]
impl<'a> StructuralPartialEq for TargetInfo<'a>[src]
impl<'a> TargetMatcher for TargetInfo<'a>[src]
pub fn matches(&self, tp: TargetPredicate<'_>) -> bool[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for TargetInfo<'a>[src]
impl<'a> Send for TargetInfo<'a>[src]
impl<'a> Sync for TargetInfo<'a>[src]
impl<'a> Unpin for TargetInfo<'a>[src]
impl<'a> UnwindSafe for TargetInfo<'a>[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,