Struct guppy::graph::PackageLink

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

Represents a dependency from one package to another.

This struct contains information about:

  • whether this dependency was renamed in the context of this crate.
  • if this is a normal, dev and/or build dependency.
  • platform-specific information about required, optional and status

Implementations§

source§

impl<'g> PackageLink<'g>

source

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

Returns the package which depends on the to package.

source

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

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

source

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

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

source

pub fn dep_name(&self) -> &'g str

Returns the name for this dependency edge. This can be affected by a crate rename.

source

pub fn resolved_name(&self) -> &'g str

Returns the resolved name for this dependency edge. This may involve renaming the crate and replacing - with _.

source

pub fn version_req(&self) -> &'g VersionReq

Returns the semver requirements specified for this dependency.

To get the resolved version, see the to field of the PackageLink this was part of.

§Notes

A dependency can be requested multiple times, possibly with different version requirements, even if they all end up resolving to the same version. version_req will return any of those requirements.

See Specifying Dependencies in the Cargo reference for more details.

source

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

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

source

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

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

source

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

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

source

pub fn req_for_kind(&self, kind: DependencyKind) -> DependencyReq<'g>

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

source

pub fn dev_only(&self) -> bool

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

Trait Implementations§

source§

impl<'g> Clone for PackageLink<'g>

source§

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

source§

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

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

impl<'g> Copy for PackageLink<'g>

Auto Trait Implementations§

§

impl<'g> Freeze for PackageLink<'g>

§

impl<'g> RefUnwindSafe for PackageLink<'g>

§

impl<'g> Send for PackageLink<'g>

§

impl<'g> Sync for PackageLink<'g>

§

impl<'g> Unpin for PackageLink<'g>

§

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

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

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

Initializes a with the given initializer. Read more
source§

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

Dereferences the given pointer. Read more
source§

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

Mutably dereferences the given pointer. Read more
source§

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.
source§

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

source§

fn vzip(self) -> V