pub struct ConditionalLink<'g> { /* private fields */ }
Expand description

A feature dependency that is conditionally activated.

A ConditionalLink is typically a link across packages. For example:

[package]
name = "main"

[dependencies]
dep = { ... }

[dev-dependencies]
dev-dep = { ... }

[target.'cfg(unix)'.dependencies]
unix-dep = { ... }

[features]
feat = ["dep/feat", "dev-dep/feat", "unix-dep/feat"]

In this example, there are ConditionalLinks from main/feat to dep/feat, dev-dep/feat and unix-dep/feat. Each link is only activated if the conditions for it are met. For example, the link to dev-dep/feat is only followed if Cargo is interested in dev-dependencies of main.

If a dependency, for example unix-dep above, is optional, an implicit feature is created in the package main with the name unix-dep. In this case, the dependency from main/feat to main/unix-dep is also a ConditionalLink representing the same cfg(unix) condition.

Implementations§

source§

impl<'g> ConditionalLink<'g>

source

pub fn from(&self) -> FeatureMetadata<'g>

Returns the feature which depends on the to feature.

source

pub fn to(&self) -> FeatureMetadata<'g>

Returns the feature which is depended on by the from feature.

source

pub fn endpoints(&self) -> (FeatureMetadata<'g>, FeatureMetadata<'g>)

Returns the endpoints as a pair of features (from, to).

source

pub fn normal(&self) -> PlatformStatus<'g>

Returns details about this feature dependency from the [dependencies] section.

source

pub fn build(&self) -> PlatformStatus<'g>

Returns details about this feature dependency from the [build-dependencies] section.

source

pub fn dev(&self) -> PlatformStatus<'g>

Returns details about this feature dependency from the [dev-dependencies] section.

source

pub fn status_for_kind(&self, kind: DependencyKind) -> PlatformStatus<'g>

Returns details about this feature dependency from the section specified by the given dependency kind.

source

pub fn dev_only(&self) -> bool

Returns true if this edge is dev-only, i.e. code from this edge will not be included in normal builds.

Returns the PackageLink from which this ConditionalLink was derived.

Trait Implementations§

source§

impl<'g> Clone for ConditionalLink<'g>

source§

fn clone(&self) -> ConditionalLink<'g>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'g> Debug for ConditionalLink<'g>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'g> Copy for ConditionalLink<'g>

Auto Trait Implementations§

§

impl<'g> RefUnwindSafe for ConditionalLink<'g>

§

impl<'g> Send for ConditionalLink<'g>

§

impl<'g> Sync for ConditionalLink<'g>

§

impl<'g> Unpin for ConditionalLink<'g>

§

impl<'g> UnwindSafe for ConditionalLink<'g>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V