#[repr(C)]pub enum EngineReaction<'a> {
Journaled(Journaled<'a>),
Directive(Directive<'a>),
}Variants§
Journaled(Journaled<'a>)
A notice that something has just happened within the engine.
Directive(Directive<'a>)
An order for something that must now happen outside the engine.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for EngineReaction<'a>
impl<'a> !Send for EngineReaction<'a>
impl<'a> !Sync for EngineReaction<'a>
impl<'a> !UnwindSafe for EngineReaction<'a>
impl<'a> Freeze for EngineReaction<'a>
impl<'a> Unpin for EngineReaction<'a>
impl<'a> UnsafeUnpin for EngineReaction<'a>
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