Struct target_spec::custom_platforms::TargetInfo[][src]

pub struct TargetInfo<'a> {
    pub triple: &'a str,
    pub os: Option<Os<'a>>,
    pub arch: Arch<'a>,
    pub env: Option<Env<'a>>,
    pub vendor: Option<Vendor<'a>>,
    pub family: Option<Family>,
    pub pointer_width: u8,
    pub endian: Endian,
}

Contains information regarding a particular target known to rustc

Fields

triple: &'a str

The 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: u8

The size of the target's pointer type. Used by the target_pointer_width predicate.

endian: Endian

The target's endianness. Used by the target_endian predicate.

Trait Implementations

impl<'a> Clone for TargetInfo<'a>[src]

impl<'a> Debug for TargetInfo<'a>[src]

impl<'a> Eq for TargetInfo<'a>[src]

impl<'a> Hash for TargetInfo<'a>[src]

impl<'a> Ord for TargetInfo<'a>[src]

impl<'a> PartialEq<TargetInfo<'a>> for TargetInfo<'a>[src]

impl<'a> PartialOrd<TargetInfo<'a>> for TargetInfo<'a>[src]

impl<'a> StructuralEq for TargetInfo<'a>[src]

impl<'a> StructuralPartialEq for TargetInfo<'a>[src]

impl<'a> TargetMatcher for TargetInfo<'a>[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]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,