[−][src]Struct cfg_expr::targets::TargetInfo
Contains information regarding a particular target known to rustc
Fields
triple: &'static strThe target's unique identifier
os: Option<Os>The target's operating system, if any. Used by the target_os predicate.
arch: ArchThe target's CPU architecture. Used by the target_arch predicate.
env: Option<Env>The target's ABI/libc used, if any. Used by the target_env predicate.
vendor: Option<Vendor>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
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
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,
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, 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.
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>,