Struct cfg_expr::targets::TargetInfo
source · [−]pub struct TargetInfo {
pub triple: Triple,
pub os: Option<Os>,
pub arch: Arch,
pub env: Option<Env>,
pub vendor: Option<Vendor>,
pub families: Families,
pub pointer_width: u8,
pub endian: Endian,
pub has_atomics: HasAtomics,
pub panic: Panic,
}
Expand description
Contains information regarding a particular target known to rustc
Fields
triple: Triple
The target’s unique identifier
os: Option<Os>
The target’s operating system, if any. Used by the target_os predicate.
arch: Arch
The 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.
families: Families
The target’s families, 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.
has_atomics: HasAtomics
The target’s support for atomics. Used by the has_target_atomics predicate.
panic: Panic
The panic strategy used on this target by default. Used by the panic predicate.
Trait Implementations
sourceimpl Clone for TargetInfo
impl Clone for TargetInfo
sourcefn clone(&self) -> TargetInfo
fn clone(&self) -> TargetInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TargetInfo
impl Debug for TargetInfo
sourceimpl Hash for TargetInfo
impl Hash for TargetInfo
sourceimpl Ord for TargetInfo
impl Ord for TargetInfo
sourceimpl PartialEq<TargetInfo> for TargetInfo
impl PartialEq<TargetInfo> for TargetInfo
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &TargetInfo) -> bool
fn ne(&self, other: &TargetInfo) -> bool
This method tests for !=
.
sourceimpl PartialOrd<TargetInfo> for TargetInfo
impl PartialOrd<TargetInfo> for TargetInfo
sourcefn partial_cmp(&self, other: &TargetInfo) -> Option<Ordering>
fn partial_cmp(&self, other: &TargetInfo) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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 more
sourceimpl TargetMatcher for TargetInfo
impl TargetMatcher for TargetInfo
fn matches(&self, tp: &TargetPredicate) -> bool
impl 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more