[][src]Struct crates_index::Dependency

pub struct Dependency { /* fields omitted */ }

A single dependency of a specific crate version

Methods

impl Dependency[src]

pub fn name(&self) -> &str[src]

pub fn requirement(&self) -> &str[src]

pub fn features(&self) -> &[String][src]

pub fn is_optional(&self) -> bool[src]

pub fn has_default_features(&self) -> bool[src]

pub fn target(&self) -> Option<&str>[src]

pub fn kind(&self) -> Option<&str>[src]

pub fn package(&self) -> Option<&str>[src]

pub fn crate_name(&self) -> &str[src]

Returns the name of the crate providing the dependency. This is equivalent to name() unless self.package() is not None, in which case it's equal to self.package().

Basically, you can define a dependency in your Cargo.toml like this:

serde_lib = {version = "1", package = "serde"}

...which means that it uses the crate serde but imports it under the name serde_lib.

Trait Implementations

impl Clone for Dependency[src]

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

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]