[][src]Enum gf::smt::SolverResult

pub enum SolverResult<S: SolverInstance> {
    Sat(S::Model),
    Unsat,
}

⚪ Result of a SolverInstance::solve invocation.

Variants

Sat(S::Model)

The assertion set is satisfiable.

Unsat

The assertion set is not satisfiable.

Auto Trait Implementations

impl<S> RefUnwindSafe for SolverResult<S> where
    <S as SolverInstance>::Model: RefUnwindSafe

impl<S> Send for SolverResult<S> where
    <S as SolverInstance>::Model: Send

impl<S> Sync for SolverResult<S> where
    <S as SolverInstance>::Model: Sync

impl<S> Unpin for SolverResult<S> where
    <S as SolverInstance>::Model: Unpin

impl<S> UnwindSafe for SolverResult<S> where
    <S as SolverInstance>::Model: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.