pub struct ResolvedDependencyGraphEntry {
pub crate_name: CrateName,
pub version: Version,
pub features: Vec<String>,
pub dependencies: Vec<ResolvedDependencyGraphDependency>,
}Expand description
One exact crates.io package node resolved from the client’s current lockfile graph.
Fields§
§crate_name: CrateNamePackage crate name.
version: VersionPackage crate version.
features: Vec<String>Sorted, deduplicated features (raw list — wire form is JSON array).
dependencies: Vec<ResolvedDependencyGraphDependency>Direct dependencies of this package.
Trait Implementations§
Source§impl Clone for ResolvedDependencyGraphEntry
impl Clone for ResolvedDependencyGraphEntry
Source§impl ComposeSchema for ResolvedDependencyGraphEntry
impl ComposeSchema for ResolvedDependencyGraphEntry
Source§impl Debug for ResolvedDependencyGraphEntry
impl Debug for ResolvedDependencyGraphEntry
Source§impl<'de> Deserialize<'de> for ResolvedDependencyGraphEntry
impl<'de> Deserialize<'de> for ResolvedDependencyGraphEntry
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
impl Eq for ResolvedDependencyGraphEntry
impl StructuralPartialEq for ResolvedDependencyGraphEntry
Auto Trait Implementations§
impl Freeze for ResolvedDependencyGraphEntry
impl RefUnwindSafe for ResolvedDependencyGraphEntry
impl Send for ResolvedDependencyGraphEntry
impl Sync for ResolvedDependencyGraphEntry
impl Unpin for ResolvedDependencyGraphEntry
impl UnsafeUnpin for ResolvedDependencyGraphEntry
impl UnwindSafe for ResolvedDependencyGraphEntry
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.