[][src]Enum pubgrub::report::External

pub enum External<P: Package, V: Version> {
    NotRoot(P, V),
    NoVersions(P, Range<V>),
    UnavailableDependencies(P, Range<V>),
    FromDependencyOf(P, Range<V>, P, Range<V>),
}

Incompatibilities that are not derived from others, they have their own reason.

Variants

NotRoot(P, V)

Initial incompatibility aiming at picking the root package for the first decision.

NoVersions(P, Range<V>)

There are no versions in the given range for this package.

UnavailableDependencies(P, Range<V>)

Dependencies of the package are unavailable for versions in that range.

FromDependencyOf(P, Range<V>, P, Range<V>)

Incompatibility coming from the dependencies of a given package.

Trait Implementations

impl<P: Clone + Package, V: Clone + Version> Clone for External<P, V>[src]

impl<P: Debug + Package, V: Debug + Version> Debug for External<P, V>[src]

impl<P: Package, V: Version> Display for External<P, V>[src]

Auto Trait Implementations

impl<P, V> RefUnwindSafe for External<P, V> where
    P: RefUnwindSafe,
    V: RefUnwindSafe

impl<P, V> Send for External<P, V> where
    P: Send,
    V: Send

impl<P, V> Sync for External<P, V> where
    P: Sync,
    V: Sync

impl<P, V> Unpin for External<P, V> where
    P: Unpin,
    V: Unpin

impl<P, V> UnwindSafe for External<P, V> where
    P: UnwindSafe,
    V: UnwindSafe

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<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.