pub struct EcosystemCounts {
pub added: usize,
pub removed: usize,
pub changed: usize,
}Expand description
Per-ecosystem counts of added, removed, and changed components.
Fields§
§added: usize§removed: usize§changed: usizeTrait Implementations§
Source§impl Clone for EcosystemCounts
impl Clone for EcosystemCounts
Source§fn clone(&self) -> EcosystemCounts
fn clone(&self) -> EcosystemCounts
Returns a duplicate 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 EcosystemCounts
impl Debug for EcosystemCounts
Source§impl Default for EcosystemCounts
impl Default for EcosystemCounts
Source§fn default() -> EcosystemCounts
fn default() -> EcosystemCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EcosystemCounts
impl<'de> Deserialize<'de> for EcosystemCounts
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 EcosystemCounts
impl PartialEq for EcosystemCounts
Source§impl Serialize for EcosystemCounts
impl Serialize for EcosystemCounts
impl Eq for EcosystemCounts
impl StructuralPartialEq for EcosystemCounts
Auto Trait Implementations§
impl Freeze for EcosystemCounts
impl RefUnwindSafe for EcosystemCounts
impl Send for EcosystemCounts
impl Sync for EcosystemCounts
impl Unpin for EcosystemCounts
impl UnsafeUnpin for EcosystemCounts
impl UnwindSafe for EcosystemCounts
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,
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.