pub struct AddOptions<'a> {
pub config: &'a Config,
pub spec: &'a Package,
pub dependencies: Vec<DepOp>,
pub section: DepTable,
pub dry_run: bool,
}
Expand description
Information on what dependencies should be added
Fields
config: &'a Config
Configuration information for cargo operations
spec: &'a Package
Package to add dependencies to
dependencies: Vec<DepOp>
Dependencies to add or modify
section: DepTable
Which dependency section to add these to
dry_run: bool
Act as if dependencies will be added
Trait Implementations
sourceimpl<'a> Clone for AddOptions<'a>
impl<'a> Clone for AddOptions<'a>
sourcefn clone(&self) -> AddOptions<'a>
fn clone(&self) -> AddOptions<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl<'a> !RefUnwindSafe for AddOptions<'a>
impl<'a> !Send for AddOptions<'a>
impl<'a> !Sync for AddOptions<'a>
impl<'a> Unpin for AddOptions<'a>
impl<'a> !UnwindSafe for AddOptions<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more