pub enum TickEngine {
Interpreter,
Compiled,
}Expand description
Select how Sim::tick evaluates FrozenHir.
Variants§
Interpreter
Walk module processes each cycle (debugging-friendly).
Compiled
Execute a linearized assign schedule compiled at Sim construction.
Implementations§
Trait Implementations§
Source§impl Clone for TickEngine
impl Clone for TickEngine
Source§fn clone(&self) -> TickEngine
fn clone(&self) -> TickEngine
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TickEngine
Source§impl Debug for TickEngine
impl Debug for TickEngine
Source§impl Default for TickEngine
impl Default for TickEngine
Source§fn default() -> TickEngine
fn default() -> TickEngine
Returns the “default value” for a type. Read more
impl Eq for TickEngine
Source§impl PartialEq for TickEngine
impl PartialEq for TickEngine
impl StructuralPartialEq for TickEngine
Auto Trait Implementations§
impl Freeze for TickEngine
impl RefUnwindSafe for TickEngine
impl Send for TickEngine
impl Sync for TickEngine
impl Unpin for TickEngine
impl UnsafeUnpin for TickEngine
impl UnwindSafe for TickEngine
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