[][src]Enum rustc_ap_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

Unchanged
Changed(Vec<O>)
Error(E)

Trait Implementations

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

Auto Trait Implementations

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

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

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

impl<O, E> UnwindSafe for ProcessResult<O, E> where
    E: UnwindSafe,
    O: 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<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<T> Erased for T[src]

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

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

impl<E> SpecializationError for E[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.