[][src]Struct cargo_toml_builder::types::Feature

pub struct Feature { /* fields omitted */ }

Represents a single feature

Methods

impl Feature[src]

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

Constructs a new, empty feature from it's label

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

Adds a dependency to the list for this feature

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

Sets the list of dependencies for this feature

pub fn feature(&mut self, feature: &str) -> &mut Self[src]

Adds a feature to the list

pub fn features(&mut self, features: &[String]) -> &mut Self[src]

Sets the list of features

WILL replace any existing features

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

Takes ownership of this builder

Trait Implementations

impl PartialEq<Feature> for Feature[src]

impl Default for Feature[src]

impl Clone for Feature[src]

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

Performs copy-assignment from source. Read more

impl<'a> From<&'a mut Feature> for Feature[src]

impl<'a> From<&'a str> for Feature[src]

impl Debug for Feature[src]

Auto Trait Implementations

impl Send for Feature

impl Sync for Feature

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]