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

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

The result type used by process_obligation.

Variants

Trait Implementations

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

Formats the value using the given formatter. Read more

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