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

pub enum ProcessResult<O, E> {
    Unchanged,
    Changed(Vec<O>),
    Error(E),
}
🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

The result type used by process_obligation.

Variants

🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

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