[][src]Enum rustc_data_structures::obligation_forest::ProcessResult

pub enum ProcessResult<O, E> {
    Unchanged,
    Changed(Vec<O>),
    Error(E),
}

The result type used by process_obligation.

Variants

UnchangedChanged(Vec<O>)Error(E)

Trait Implementations

impl<O: Debug, E: Debug> Debug for ProcessResult<O, E>[src]

Auto Trait Implementations

impl<O, E> Send for ProcessResult<O, E> where
    E: Send,
    O: Send

impl<O, E> Sync for ProcessResult<O, E> where
    E: Sync,
    O: Sync

Blanket Implementations

impl<T> Erased for T[src]

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

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

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<E> SpecializationError for E[src]