[][src]Struct cargo_toml_builder::types::PatchSet

pub struct PatchSet { /* fields omitted */ }

Represents a patchset for a Cargo.toml

Methods

impl PatchSet[src]

pub fn new(label: &str) -> PatchSet[src]

Constructs a new, empty patchset

pub fn patch<D: Into<Dependency>>(&mut self, patch: D) -> &mut Self[src]

Adds a single patch to this builder

Will not affect any other patches that have been added

pub fn patches(&mut self, patches: &[Dependency]) -> &mut Self[src]

Adds a set of patches to this builder

WILL replace any existing patches that have been added to this builder

pub fn build(&self) -> Self[src]

Takes ownership of this builder

Trait Implementations

impl PartialEq<PatchSet> for PatchSet[src]

impl Clone for PatchSet[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PatchSet[src]

Auto Trait Implementations

impl Send for PatchSet

impl Sync for PatchSet

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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