Skip to main content

DepGraph

Struct DepGraph 

Source
pub struct DepGraph { /* private fields */ }
Expand description

Dependency graph in a workspace

Implementations§

Source§

impl DepGraph

Source

pub fn new() -> Self

Create a new, empty dependency graph

Source

pub fn add_crate(&mut self, cc: CargoCrate)

Source

pub fn finalise(&mut self)

Cache the dependents graph for all crates

Source

pub fn get_crate(&self, id: CrateId) -> &Crate

Get a crate by ID

Source

pub fn mut_crate(&mut self, id: CrateId) -> &mut Crate

Get mutable access to a crate by ID

Source

pub fn find_crate(&self, name: &String) -> Option<CrateId>

Find a crate via it’s name

Source

pub fn find_crate_by_path(&self, name: &String) -> Option<CrateId>

Find a crate by it’s path-offset in the workspace

Source

pub fn get_dependents(&self, id: CrateId) -> Vec<CrateId>

Get a crate’s dependents

Source

pub fn get_all(&self) -> Vec<&Crate>

Auto Trait Implementations§

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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.