pub struct DependencyEcosystemSummary {
pub ecosystem: DependencyEcosystem,
pub source: DependencySource,
pub manifest: PathBuf,
pub lockfile: Option<PathBuf>,
pub normal: usize,
pub development: usize,
pub build: usize,
pub optional: usize,
pub total: usize,
}Fields§
§ecosystem: DependencyEcosystem§source: DependencySource§manifest: PathBuf§lockfile: Option<PathBuf>§normal: usize§development: usize§build: usize§optional: usize§total: usizeTrait Implementations§
Source§impl Clone for DependencyEcosystemSummary
impl Clone for DependencyEcosystemSummary
Source§fn clone(&self) -> DependencyEcosystemSummary
fn clone(&self) -> DependencyEcosystemSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DependencyEcosystemSummary
impl Debug for DependencyEcosystemSummary
Source§impl<'de> Deserialize<'de> for DependencyEcosystemSummary
impl<'de> Deserialize<'de> for DependencyEcosystemSummary
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 for DependencyEcosystemSummary
impl PartialEq for DependencyEcosystemSummary
Source§fn eq(&self, other: &DependencyEcosystemSummary) -> bool
fn eq(&self, other: &DependencyEcosystemSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DependencyEcosystemSummary
impl StructuralPartialEq for DependencyEcosystemSummary
Auto Trait Implementations§
impl Freeze for DependencyEcosystemSummary
impl RefUnwindSafe for DependencyEcosystemSummary
impl Send for DependencyEcosystemSummary
impl Sync for DependencyEcosystemSummary
impl Unpin for DependencyEcosystemSummary
impl UnsafeUnpin for DependencyEcosystemSummary
impl UnwindSafe for DependencyEcosystemSummary
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