pub trait StartableRuntime<'a>: InternalRuntime + Sized + 'a {
    fn construct() -> Self;

    fn new() -> OwnedRuntime<'a> { ... }
}
Expand description

Trait to construct a runtime

Required Methods§

Internal function to make a new runtime. Only to be used by new() to create an OwnedRuntime. Automatically implemented for T where T: Default

Provided Methods§

Constructs some new runtime

Implementors§