Enum cfg_expr::expr::TargetPredicate[][src]

pub enum TargetPredicate<'a> {
    Arch(Arch<'a>),
    Endian(Endian),
    Env(Env<'a>),
    Family(Family),
    Os(Os<'a>),
    PointerWidth(u8),
    Vendor(Vendor<'a>),
}

All predicates that pertains to a target, except for target_feature

Variants

Arch(Arch<'a>)
Endian(Endian)
Env(Env<'a>)
Family(Family)

target_family This also applies to the bare unix and windows predicates.

Os(Os<'a>)
PointerWidth(u8)
Vendor(Vendor<'a>)

Implementations

impl<'a> TargetPredicate<'a>[src]

pub fn matches<T>(self, target: &T) -> bool where
    T: TargetMatcher
[src]

Returns true of the predicate matches the specified target

use cfg_expr::{targets::*, expr::TargetPredicate as tp};
let win = get_builtin_target_by_triple("x86_64-pc-windows-msvc").unwrap();

assert!(
    tp::Arch(Arch::x86_64).matches(win) &&
    tp::Endian(Endian::little).matches(win) &&
    tp::Env(Env::msvc).matches(win) &&
    tp::Family(Family::windows).matches(win) &&
    tp::Os(Os::windows).matches(win) &&
    tp::PointerWidth(64).matches(win) &&
    tp::Vendor(Vendor::pc).matches(win)
);

Trait Implementations

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

impl<'a> Copy for TargetPredicate<'a>[src]

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for TargetPredicate<'a>

impl<'a> Send for TargetPredicate<'a>

impl<'a> Sync for TargetPredicate<'a>

impl<'a> Unpin for TargetPredicate<'a>

impl<'a> UnwindSafe for TargetPredicate<'a>

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.