pub struct ImmediateEventDomainDriver;Expand description
Blocking event-domain driver used by synchronous CPU engines.
§Examples
use tenferro_runtime::runtime::ImmediateEventDomainDriver;
let _driver = ImmediateEventDomainDriver::new();Implementations§
Trait Implementations§
Source§impl Clone for ImmediateEventDomainDriver
impl Clone for ImmediateEventDomainDriver
Source§fn clone(&self) -> ImmediateEventDomainDriver
fn clone(&self) -> ImmediateEventDomainDriver
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ImmediateEventDomainDriver
impl Debug for ImmediateEventDomainDriver
Source§impl Default for ImmediateEventDomainDriver
impl Default for ImmediateEventDomainDriver
Source§fn default() -> ImmediateEventDomainDriver
fn default() -> ImmediateEventDomainDriver
Returns the “default value” for a type. Read more
Source§impl EventDomainDriver for ImmediateEventDomainDriver
impl EventDomainDriver for ImmediateEventDomainDriver
Source§fn begin_run(&self, domain: EventDomainId) -> Result<Box<dyn EventDomainRun>>
fn begin_run(&self, domain: EventDomainId) -> Result<Box<dyn EventDomainRun>>
Begin one isolated execution run for exactly
domain. Read moreimpl Copy for ImmediateEventDomainDriver
Auto Trait Implementations§
impl Freeze for ImmediateEventDomainDriver
impl RefUnwindSafe for ImmediateEventDomainDriver
impl Send for ImmediateEventDomainDriver
impl Sync for ImmediateEventDomainDriver
impl Unpin for ImmediateEventDomainDriver
impl UnsafeUnpin for ImmediateEventDomainDriver
impl UnwindSafe for ImmediateEventDomainDriver
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more