Struct cargo::ops::cargo_add::AddOptions
source · 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 ConfigConfiguration information for cargo operations
spec: &'a PackagePackage to add dependencies to
dependencies: Vec<DepOp>Dependencies to add or modify
section: DepTableWhich dependency section to add these to
dry_run: boolAct as if dependencies will be added
Trait Implementations§
source§impl<'a> Clone for AddOptions<'a>
impl<'a> Clone for AddOptions<'a>
source§fn clone(&self) -> AddOptions<'a>
fn clone(&self) -> AddOptions<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto 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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more