pub enum SummaryDiffStatus<'a> {
Added {
info: &'a PackageInfo,
},
Removed {
old_info: &'a PackageInfo,
},
Modified {
old_version: Option<&'a Version>,
old_source: Option<&'a SummarySource>,
old_status: Option<PackageStatus>,
new_status: PackageStatus,
added_features: BTreeSet<&'a str>,
removed_features: BTreeSet<&'a str>,
unchanged_features: BTreeSet<&'a str>,
added_optional_deps: BTreeSet<&'a str>,
removed_optional_deps: BTreeSet<&'a str>,
unchanged_optional_deps: BTreeSet<&'a str>,
},
}
Expand description
The diff status for a particular summary ID and source.
Variants§
Added
This package was added.
Fields
§
info: &'a PackageInfo
The information for this package.
Removed
This package was removed.
Fields
§
old_info: &'a PackageInfo
The information this package used to have.
Modified
Some details about the package changed:
- a feature was added or removed
- the version or source changed.
Fields
§
old_source: Option<&'a SummarySource>
The old source of this package, if the source changed.
§
old_status: Option<PackageStatus>
The old status of this package, if the status changed.
§
new_status: PackageStatus
The current status of this package.
Implementations§
source§impl<'a> SummaryDiffStatus<'a>
impl<'a> SummaryDiffStatus<'a>
sourcepub fn tag(&self) -> SummaryDiffTag
pub fn tag(&self) -> SummaryDiffTag
Returns the tag for this status.
The tag is similar to this enum, except it has no associated data.
sourcepub fn latest_status(&self) -> PackageStatus
pub fn latest_status(&self) -> PackageStatus
Returns the new package status if available, otherwise the old status.
Trait Implementations§
source§impl<'a> Clone for SummaryDiffStatus<'a>
impl<'a> Clone for SummaryDiffStatus<'a>
source§fn clone(&self) -> SummaryDiffStatus<'a>
fn clone(&self) -> SummaryDiffStatus<'a>
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<'a> Debug for SummaryDiffStatus<'a>
impl<'a> Debug for SummaryDiffStatus<'a>
source§impl<'a> PartialEq for SummaryDiffStatus<'a>
impl<'a> PartialEq for SummaryDiffStatus<'a>
source§impl<'a> Serialize for SummaryDiffStatus<'a>
impl<'a> Serialize for SummaryDiffStatus<'a>
impl<'a> Eq for SummaryDiffStatus<'a>
impl<'a> StructuralPartialEq for SummaryDiffStatus<'a>
Auto Trait Implementations§
impl<'a> Freeze for SummaryDiffStatus<'a>
impl<'a> RefUnwindSafe for SummaryDiffStatus<'a>
impl<'a> Send for SummaryDiffStatus<'a>
impl<'a> Sync for SummaryDiffStatus<'a>
impl<'a> Unpin for SummaryDiffStatus<'a>
impl<'a> UnwindSafe for SummaryDiffStatus<'a>
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more