Enum rustc_data_structures::obligation_forest::NodeState[][src]

enum NodeState {
    Pending,
    Success,
    Waiting,
    Done,
    Error,
    OnDfsStack,
}
🔬 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 state of one node in some tree within the forest. This represents the current state of processing for the obligation (of type O) associated with this node.

Outside of ObligationForest methods, nodes should be either Pending or Waiting.

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?

Obligations for which selection had not yet returned a non-ambiguous result.

🔬 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 obligation was selected successfully, but may or may not have subobligations.

🔬 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 obligation was selected successfully, but it has a pending subobligation.

🔬 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 obligation, along with its subobligations, are complete, and will be removed in the next collection.

🔬 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 obligation was resolved to an error. Error nodes are removed from the vector by the compression step.

🔬 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 temporary state used in DFS loops to detect cycles, it should not exist outside of these DFSes.

Trait Implementations

impl Debug for NodeState
[src]

Formats the value using the given formatter. Read more

impl Copy for NodeState
[src]

impl Clone for NodeState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for NodeState
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for NodeState
[src]

Auto Trait Implementations

impl Send for NodeState

impl Sync for NodeState