pub struct UnitFor { /* private fields */ }
Expand description
Flags used in creating Unit
s to indicate the purpose for the target, and
to ensure the target’s dependencies have the correct settings.
Implementations
sourceimpl UnitFor
impl UnitFor
sourcepub fn new_normal() -> UnitFor
pub fn new_normal() -> UnitFor
A unit for a normal target/dependency (i.e., not custom build, proc macro/plugin, or test/bench).
sourcepub fn new_host(host_features: bool) -> UnitFor
pub fn new_host(host_features: bool) -> UnitFor
A unit for a custom build script or proc-macro or its dependencies.
The host_features
parameter is whether or not this is for a build
dependency or proc-macro (something that requires being built “on the
host”). Build scripts for non-host units should use false
because
they want to use the features of the package they are running for.
sourcepub fn new_compiler() -> UnitFor
pub fn new_compiler() -> UnitFor
A unit for a compiler plugin or their dependencies.
sourcepub fn new_test(config: &Config) -> UnitFor
pub fn new_test(config: &Config) -> UnitFor
A unit for a test/bench target or their dependencies.
Note that config
is taken here for unstable CLI features to detect
whether panic=abort
is supported for tests. Historical versions of
rustc did not support this, but newer versions do with an unstable
compiler flag.
sourcepub fn new_host_test(config: &Config) -> UnitFor
pub fn new_host_test(config: &Config) -> UnitFor
This is a special case for unit tests of a proc-macro.
Proc-macro unit tests are forced to be run on the host.
sourcepub fn with_dependency(self, parent: &Unit, dep_target: &Target) -> UnitFor
pub fn with_dependency(self, parent: &Unit, dep_target: &Target) -> UnitFor
Returns a new copy updated based on the target dependency.
This is where the magic happens that the host/host_features settings transition in a sticky fashion. As the dependency graph is being built, once those flags are set, they stay set for the duration of that portion of tree.
sourcepub fn is_for_host(&self) -> bool
pub fn is_for_host(&self) -> bool
Returns true
if this unit is for a build script or any of its
dependencies, or a proc macro or any of its dependencies.
pub fn is_for_host_features(&self) -> bool
sourcepub fn all_values() -> &'static [UnitFor]
pub fn all_values() -> &'static [UnitFor]
All possible values, used by clean
.
Trait Implementations
sourceimpl Ord for UnitFor
impl Ord for UnitFor
sourceimpl PartialOrd<UnitFor> for UnitFor
impl PartialOrd<UnitFor> for UnitFor
sourcefn partial_cmp(&self, other: &UnitFor) -> Option<Ordering>
fn partial_cmp(&self, other: &UnitFor) -> 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
impl Copy for UnitFor
impl Eq for UnitFor
impl StructuralEq for UnitFor
impl StructuralPartialEq for UnitFor
Auto Trait Implementations
impl RefUnwindSafe for UnitFor
impl Send for UnitFor
impl Sync for UnitFor
impl Unpin for UnitFor
impl UnwindSafe for UnitFor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub 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.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more