pub enum StartOutcome {
Attached(EngineInfo),
Spawned(Child),
}Expand description
The result of spawn_or_attach.
Variants§
Attached(EngineInfo)
A compatible engine was already running; we registered against it.
Spawned(Child)
No compatible engine — we spawned our own.
Auto Trait Implementations§
impl Freeze for StartOutcome
impl RefUnwindSafe for StartOutcome
impl Send for StartOutcome
impl Sync for StartOutcome
impl Unpin for StartOutcome
impl UnsafeUnpin for StartOutcome
impl UnwindSafe for StartOutcome
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