Struct guppy::graph::summaries::diff::SummaryDiff[][src]

pub struct SummaryDiff<'a> {
    pub target_packages: PackageDiff<'a>,
    pub host_packages: PackageDiff<'a>,
}

A diff of two package summaries.

This struct contains information on the packages that were changed, as well as those that were not.

Human-readable reports

The report method can be used with fmt::Display to generate a friendly, human-readable report.

Machine-readable serialization

A SummaryDiff can be serialized through serde. The output format is part of the API.

An example of TOML-serialized output:

[[target-packages.changed]]
name = "dep"
version = "0.4.3"
crates-io = true
change = "added"
status = "direct"
features = ["std"]

[[target-packages.changed]]
name = "foo"
version = "1.2.3"
workspace-path = "foo"
change = "modified"
new-status = "initial"
added-features = ["feature2"]
removed-features = []
unchanged-features = ["default", "feature1"]

[[target-packages.unchanged]]
name = "no-changes"
version = "1.5.3"
crates-io = true
status = "transitive"
features = ["default"]

[[host-packages.changed]]
name = "dep"
version = "0.4.2"
crates-io = true
change = "removed"
old-status = "direct"
old-features = ["std"]

Fields

target_packages: PackageDiff<'a>

Diff of target packages.

host_packages: PackageDiff<'a>

Diff of host packages.

Implementations

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

pub fn new<M1, M2>(
    old: &'a SummaryWithMetadata<M1>,
    new: &'a SummaryWithMetadata<M2>
) -> SummaryDiff<'a>
[src]

Computes a diff between two summaries.

pub fn is_changed(&self) -> bool[src]

Returns true if there are any changes in this diff.

pub fn is_unchanged(&self) -> bool[src]

Returns true if there are no changes in this diff.

pub fn report(&'b self) -> SummaryReport<'a, 'b>[src]

Returns a report for this diff.

This report can be used with fmt::Display.

Trait Implementations

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

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

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for SummaryDiff<'a>[src]

impl<'a> Send for SummaryDiff<'a>[src]

impl<'a> Sync for SummaryDiff<'a>[src]

impl<'a> Unpin for SummaryDiff<'a>[src]

impl<'a> UnwindSafe for SummaryDiff<'a>[src]

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