pub enum EngineStartup {
Spawned,
Reused {
stamp: Option<EngineRuntimeStamp>,
},
}Expand description
How start_or_reuse satisfied the request.
Variants§
Spawned
A new engine was spawned with the requested configuration.
Reused
An already-running engine was reused. stamp is its recorded runtime
parameters, or None when no live stamp was found (an engine from an
older CLI, started by hand, or a stale stamp whose process is gone).
Fields
§
stamp: Option<EngineRuntimeStamp>Trait Implementations§
Auto Trait Implementations§
impl Freeze for EngineStartup
impl RefUnwindSafe for EngineStartup
impl Send for EngineStartup
impl Sync for EngineStartup
impl Unpin for EngineStartup
impl UnsafeUnpin for EngineStartup
impl UnwindSafe for EngineStartup
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