[−][src]Struct crates_index::Dependency
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(&self) -> Dependency[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for Dependency[src]
impl<'de> Deserialize<'de> for Dependency[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Serialize for Dependency[src]
Auto Trait Implementations
impl RefUnwindSafe for Dependency
impl Send for Dependency
impl Sync for Dependency
impl Unpin for Dependency
impl UnwindSafe for Dependency
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,