[][src]Struct reax::ThreadRuntime

pub struct ThreadRuntime { /* fields omitted */ }

The per-thread reax runtime responsible for tracking changes and dependencies.

Implementations

impl ThreadRuntime[src]

pub fn replace_current(self) -> ThreadRuntime[src]

Replaces the runtime of the current thread with self, returning the old runtime. All information about existing nodes on this thread will be lost so be careful.

pub fn write_graphviz(to: impl Write) -> Result<()>[src]

Write out a simple graphviz DSL representation of the current thread's runtime state; complete with dependencies, dirty status, and labels. The exact syntax produced may change at any time so don't rely on it.

Trait Implementations

impl Debug for ThreadRuntime[src]

impl Default for ThreadRuntime[src]

Auto Trait Implementations

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.