Enum haybale::solver_utils::PossibleSolutions[][src]

pub enum PossibleSolutions<V: Eq + Hash> {
    Exactly(HashSet<V>),
    AtLeast(HashSet<V>),
}

Variants

Exactly(HashSet<V>)

This is exactly the set of possible solutions; there are no others. Note that an empty set here indicates there are no possible solutions.

Tuple Fields of Exactly

0: HashSet<V>
AtLeast(HashSet<V>)

All of the solutions in this set are possible solutions, but there may be others. That is, there are at least this many solutions.

Tuple Fields of AtLeast

0: HashSet<V>

Implementations

Create a new, empty, PossibleSolutions (representing no possible solution)

Create a new PossibleSolutions representing exactly one possible solution

Create a new PossibleSolutions repesenting exactly two possible solutions

Convert a PossibleSolutions over BVSolution into a PossibleSolutions over u64, by applying as_u64() to each BVSolution. If as_u64() fails for any individual solution, this returns None.

Get a count of how many possible solutions there are.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Create a PossibleSolutions::Exactly from the contents of an iterator

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.