Struct determinator::DeterminatorSet[][src]

pub struct DeterminatorSet<'g> {
    pub affected_set: PackageSet<'g>,
    pub path_changed_set: PackageSet<'g>,
    pub summary_changed_set: PackageSet<'g>,
}

The result of a Determinator computation.

The lifetime 'g is tied to the new PackageGraph passed to a Determinator.

Fields

affected_set: PackageSet<'g>

The packages that were affected, directly or indirectly. This set is what most consumers care about.

A package is in this set if it was marked changed due to a path or summaries changing, or if a simulated Cargo build or package rule indicated that it is affected.

path_changed_set: PackageSet<'g>

The packages that were marked changed because a file changed.

Either a file inside this package changed or a path rule was matched.

summary_changed_set: PackageSet<'g>

The packages that were marked changed becuase a simulated Cargo build’s summary showed changes in dependencies.

This does not include packages marked changed through a path. For example, if a path rule caused all packages to be marked changed, further steps aren’t run and this set is empty.

Trait Implementations

impl<'g> Clone for DeterminatorSet<'g>[src]

impl<'g> Debug for DeterminatorSet<'g>[src]

Auto Trait Implementations

impl<'g> RefUnwindSafe for DeterminatorSet<'g>

impl<'g> Send for DeterminatorSet<'g>

impl<'g> Sync for DeterminatorSet<'g>

impl<'g> Unpin for DeterminatorSet<'g>

impl<'g> UnwindSafe for DeterminatorSet<'g>

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SafeBorrow<T> for T where
    T: ?Sized

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.