Struct adapton::reflect::CompNode [] [src]

pub struct CompNode {
    pub preds: Vec<Pred>,
    pub succs: Vec<Succ>,
    pub prog_pt: ProgPt,
    pub value: Option<Val>,
}

Reflected version of engine::CompNode. Stores a reflected value of type Option<Val>, which is None when the node has not yet been executed, and Some(_) otherwise.

Fields

Trait Implementations

impl Debug for CompNode
[src]

Formats the value using the given formatter.

impl Clone for CompNode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for CompNode
[src]

impl PartialEq for CompNode
[src]

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

This method tests for !=.

impl Hash for CompNode
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more