Enum guppy_summaries::diff::SummaryDiffStatus

source ·
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_version: Option<&'a Version>

The old version of this package, if the version changed.

§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.

§added_features: BTreeSet<&'a str>

The set of features added to the package.

§removed_features: BTreeSet<&'a str>

The set of features removed from the package.

§unchanged_features: BTreeSet<&'a str>

The set of features which were enabled both in both the old and new summaries.

§added_optional_deps: BTreeSet<&'a str>

The set of optional dependencies added to the package.

§removed_optional_deps: BTreeSet<&'a str>

The set of optional dependencies removed from the package.

§unchanged_optional_deps: BTreeSet<&'a str>

The set of optional dependencies enabled both in both the old and new summaries.

Implementations§

source§

impl<'a> SummaryDiffStatus<'a>

source

pub fn tag(&self) -> SummaryDiffTag

Returns the tag for this status.

The tag is similar to this enum, except it has no associated data.

source

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>

source§

fn clone(&self) -> SummaryDiffStatus<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for SummaryDiffStatus<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> PartialEq for SummaryDiffStatus<'a>

source§

fn eq(&self, other: &SummaryDiffStatus<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> Serialize for SummaryDiffStatus<'a>

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<'a> Eq for SummaryDiffStatus<'a>

source§

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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.