pub struct RuntimeBuilder<C: Clock, M: ExecutionMode> { /* private fields */ }Expand description
Builder for constructing a runtime with specific clock and execution mode.
Uses the type system to ensure both clock and execution mode are provided before building the runtime.
Implementations§
Source§impl<C: Clock, M: ExecutionMode> RuntimeBuilder<C, M>
impl<C: Clock, M: ExecutionMode> RuntimeBuilder<C, M>
Auto Trait Implementations§
impl<C, M> Freeze for RuntimeBuilder<C, M>
impl<C, M> RefUnwindSafe for RuntimeBuilder<C, M>where
C: RefUnwindSafe,
M: RefUnwindSafe,
impl<C, M> Send for RuntimeBuilder<C, M>
impl<C, M> Sync for RuntimeBuilder<C, M>
impl<C, M> Unpin for RuntimeBuilder<C, M>
impl<C, M> UnwindSafe for RuntimeBuilder<C, M>where
C: UnwindSafe,
M: UnwindSafe,
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