Enum guppy::graph::summaries::diff::SummaryDiffStatus[][src]

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>,
    },
}

The diff status for a particular summary ID and source.

Variants

Added

This package was added.

Fields of Added

info: &'a PackageInfo

The information for this package.

Removed

This package was removed.

Fields of Removed

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 of Modified

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.

Implementations

impl<'a> SummaryDiffStatus<'a>[src]

pub fn tag(&self) -> SummaryDiffTag[src]

Returns the tag for this status.

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

pub fn latest_status(&self) -> PackageStatus[src]

Returns the new package status if available, otherwise the old status.

Trait Implementations

impl<'a> Clone for SummaryDiffStatus<'a>[src]

impl<'a> Debug for SummaryDiffStatus<'a>[src]

impl<'a> Eq for SummaryDiffStatus<'a>[src]

impl<'a> PartialEq<SummaryDiffStatus<'a>> for SummaryDiffStatus<'a>[src]

impl<'a> Serialize for SummaryDiffStatus<'a>[src]

impl<'a> StructuralEq for SummaryDiffStatus<'a>[src]

impl<'a> StructuralPartialEq for SummaryDiffStatus<'a>[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> DefaultFeatures<'a> for T where
    T: 'a + Clone + Send + Sync
[src]

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<'a, T> NonSyncFeatures<'a> for T where
    T: 'a + Clone
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SafeBorrow<T> for T where
    T: ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,