Struct isla_lib::smt::Trace[][src]

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

Abstractly represents a sequence of events in such a way that checkpoints can be created and shared.

Implementations

impl<B: BV> Trace<B>[src]

pub fn new() -> Self[src]

pub fn checkpoint(&mut self, next_var: u32) -> Checkpoint<B>[src]

pub fn to_vec<'a>(&'a self) -> Vec<&'a Event<B>>

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>
[src]

Trait Implementations

impl<B: Debug> Debug for Trace<B>[src]

Auto Trait Implementations

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

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

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

impl<B> Unpin for Trace<B> where
    B: Unpin

impl<B> UnwindSafe for Trace<B> where
    B: RefUnwindSafe + 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> Same<T> for T

type Output = T

Should always be Self

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.