[][src]Struct cargo_workspace2::models::Workspace

pub struct Workspace {
    pub root: PathBuf,
    // some fields omitted
}

A fully parsed workspace

Fields

root: PathBuf

Implementations

impl Workspace[src]

pub fn process(cws: CargoWorkspace) -> Self[src]

Create a parsed workspace by passing in the stage1 parse data

pub fn query(&self, q: Query) -> Vec<CrateId>[src]

Execute a query on this workspace to find crate IDs

pub fn execute(&mut self, op: Op, target: Vec<CrateId>)[src]

Execute an operation on a set of crates this in workspace

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.