Enum elba::resolve::assignment::AssignmentType[][src]

pub enum AssignmentType {
    Decision {
        version: Version,
    },
    Derivation {
        constraint: Constraint,
        cause: usize,
        positive: bool,
    },
}

Variants

Fields of Decision

Fields of Derivation

Trait Implementations

impl Clone for AssignmentType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AssignmentType
[src]

Formats the value using the given formatter. Read more

impl PartialEq for AssignmentType
[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 AssignmentType
[src]

Auto Trait Implementations