Struct target_spec::Platform [−][src]
pub struct Platform { /* fields omitted */ }
Expand description
A platform to evaluate target specs against.
Implementations
Creates a new Platform
from the given triple and target features.
Returns an error if this platform wasn’t known to target-spec
.
Returns the current platform, as detected at build time.
This will return an error if the current platform was unknown to this version of
target-spec
.
Creates a new platform from a Triple
and target features.
Adds a set of flags to accept.
A flag is a single token like the foo
in cfg(not(foo))
.
A default cargo build
will always evaluate flags to false, but custom wrappers may cause
some flags to evaluate to true. For example, as of version 0.6, cargo web build
will cause
cargo_web
to evaluate to true.
Returns the target triple string for this platform.
Returns the set of flags enabled for this platform.
Returns true if this flag was set with add_flags
.
Returns the set of target features for this platform.
Trait Implementations
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Platform
impl UnwindSafe for Platform
Blanket Implementations
Mutably borrows from an owned value. Read more