Struct isla_lib::smt::Checkpoint[][src]

pub struct Checkpoint<B> { /* fields omitted */ }

Snapshot of interaction with underlying solver that can be efficiently cloned and shared between threads.

Implementations

impl<B> Checkpoint<B>[src]

pub fn new() -> Self[src]

pub fn trace(&self) -> &Option<Trace<B>>[src]

Trait Implementations

impl<B: Clone> Clone for Checkpoint<B>[src]

impl<B: Default> Default for Checkpoint<B>[src]

Auto Trait Implementations

impl<B> RefUnwindSafe for Checkpoint<B> where
    B: RefUnwindSafe

impl<B> Send for Checkpoint<B> where
    B: Send + Sync

impl<B> Sync for Checkpoint<B> where
    B: Send + Sync

impl<B> Unpin for Checkpoint<B>

impl<B> UnwindSafe for Checkpoint<B> where
    B: RefUnwindSafe

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> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.