[][src]Struct cargo_raze::metadata::Dependency

pub struct Dependency {
    pub name: String,
    pub source: String,
    pub req: String,
    pub kind: Option<Kind>,
    pub optional: bool,
    pub uses_default_features: bool,
    pub features: Vec<String>,
    pub target: Option<TargetSpec>,
}

The metadata for a dependency (a reference connecting a crate to another crate).

WARNING: Cargo-raze does not control the definition of this struct. This struct mirrors Cargo's own "SerializedDependency": https://github.com/rust-lang/cargo/blob/75ec2d3a8d045f90792b3ce5d7050cad43bfb3bf/src/cargo/core/dependency.rs#L49-L60

Fields

name: Stringsource: Stringreq: Stringkind: Option<Kind>optional: booluses_default_features: boolfeatures: Vec<String>target: Option<TargetSpec>

Trait Implementations

impl Eq for Dependency[src]

impl PartialEq<Dependency> for Dependency[src]

impl Clone for Dependency[src]

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

Performs copy-assignment from source. Read more

impl Debug for Dependency[src]

impl Serialize for Dependency[src]

impl<'de> Deserialize<'de> for Dependency[src]

Auto Trait Implementations

impl Send for Dependency

impl Sync for Dependency

Blanket Implementations

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

type Owned = T

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> Borrow for T where
    T: ?Sized
[src]

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

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

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]