Struct guppy::graph::DependencyReq

source ·
pub struct DependencyReq<'g> { /* private fields */ }
Expand description

Information about a specific kind of dependency (normal, build or dev) from a package to another package.

Usually found within the context of a PackageLink.

Implementations§

source§

impl<'g> DependencyReq<'g>

source

pub fn is_present(&self) -> bool

Returns true if there is at least one Cargo.toml entry corresponding to this requirement.

For example, if this dependency is specified in the [dev-dependencies] section, edge.dev().is_present() will return true.

source

pub fn status(&self) -> EnabledStatus<'g>

Returns the enabled status of this dependency.

status is the union of default_features and no_default_features.

See the documentation for EnabledStatus for more.

source

pub fn default_features(&self) -> EnabledStatus<'g>

Returns the enabled status of this dependency when default-features = true.

See the documentation for EnabledStatus for more.

source

pub fn no_default_features(&self) -> EnabledStatus<'g>

Returns the enabled status of this dependency when default-features = false.

This is generally less useful than status or default_features, but is provided for completeness.

See the documentation for EnabledStatus for more.

source

pub fn features(&self) -> impl Iterator<Item = &'g str>

Returns a list of all features possibly enabled by this dependency. This includes features that are only turned on if the dependency is optional, or features enabled by inactive platforms.

source

pub fn feature_status(&self, feature: &str) -> EnabledStatus<'g>

Returns the enabled status of this feature.

Note that as of Rust 1.42, the default feature resolver behaves in potentially surprising ways. See the Cargo reference for more.

See the documentation for EnabledStatus for more.

Trait Implementations§

source§

impl<'g> Clone for DependencyReq<'g>

source§

fn clone(&self) -> DependencyReq<'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 DependencyReq<'g>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'g> RefUnwindSafe for DependencyReq<'g>

§

impl<'g> Send for DependencyReq<'g>

§

impl<'g> Sync for DependencyReq<'g>

§

impl<'g> Unpin for DependencyReq<'g>

§

impl<'g> UnwindSafe for DependencyReq<'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