Struct cargo_toml::DependencyDetail
source · pub struct DependencyDetail {Show 13 fields
pub version: Option<String>,
pub registry: Option<String>,
pub registry_index: Option<String>,
pub path: Option<String>,
pub inherited: bool,
pub git: Option<String>,
pub branch: Option<String>,
pub tag: Option<String>,
pub rev: Option<String>,
pub features: Vec<String>,
pub optional: bool,
pub default_features: bool,
pub package: Option<String>,
}
Fields§
§version: Option<String>
Requirement
registry: Option<String>
§registry_index: Option<String>
§path: Option<String>
This path is usually relative to the crate’s manifest, but when using workspace inheritance, it may be relative to the workspace!
When calling complete_from_path_and_workspace
use absolute path for the workspace manifest, and then this will be corrected to be an absolute
path when inherited from the workspace.
inherited: bool
If true, the dependency has been defined at the workspace level, so the path
is joined with workspace’s base path.
Note that Dependency::Simple
won’t have this flag, even if it was inherited.
git: Option<String>
§branch: Option<String>
§tag: Option<String>
§rev: Option<String>
§features: Vec<String>
§optional: bool
NB: Not allowed at workspace level
default_features: bool
§package: Option<String>
Use this crate name instead of table key
Trait Implementations§
source§impl Clone for DependencyDetail
impl Clone for DependencyDetail
source§fn clone(&self) -> DependencyDetail
fn clone(&self) -> DependencyDetail
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DependencyDetail
impl Debug for DependencyDetail
source§impl Default for DependencyDetail
impl Default for DependencyDetail
source§fn default() -> DependencyDetail
fn default() -> DependencyDetail
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DependencyDetail
impl<'de> Deserialize<'de> for DependencyDetail
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<DependencyDetail> for DependencyDetail
impl PartialEq<DependencyDetail> for DependencyDetail
source§fn eq(&self, other: &DependencyDetail) -> bool
fn eq(&self, other: &DependencyDetail) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for DependencyDetail
impl Serialize for DependencyDetail
impl Eq for DependencyDetail
impl StructuralEq for DependencyDetail
impl StructuralPartialEq for DependencyDetail
Auto Trait Implementations§
impl RefUnwindSafe for DependencyDetail
impl Send for DependencyDetail
impl Sync for DependencyDetail
impl Unpin for DependencyDetail
impl UnwindSafe for DependencyDetail
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.