pub struct Checkpoint<B> { /* private fields */ }
Expand description
Snapshot of interaction with underlying solver that can be efficiently cloned and shared between threads.
Implementations§
Trait Implementations§
Source§impl<B: Clone> Clone for Checkpoint<B>
impl<B: Clone> Clone for Checkpoint<B>
Source§fn clone(&self) -> Checkpoint<B>
fn clone(&self) -> Checkpoint<B>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<B: Default> Default for Checkpoint<B>
impl<B: Default> Default for Checkpoint<B>
Source§fn default() -> Checkpoint<B>
fn default() -> Checkpoint<B>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<B> Freeze for Checkpoint<B>
impl<B> RefUnwindSafe for Checkpoint<B>where
B: RefUnwindSafe,
impl<B> Send for Checkpoint<B>
impl<B> Sync for Checkpoint<B>
impl<B> Unpin for Checkpoint<B>
impl<B> UnwindSafe for Checkpoint<B>where
B: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more