pub struct Executor<'a> { /* private fields */ }
Expand description
A wrapper around the underlying runtime/executor.
This is used to run asynchronous tasks internally and allows integration with various runtimes.
See crate::Connection::executor
for an example of integration with external runtimes.
Note: You can (and should) completely ignore this type when building with tokio
feature
enabled.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Executor<'a>
impl<'a> RefUnwindSafe for Executor<'a>
impl<'a> Send for Executor<'a>
impl<'a> Sync for Executor<'a>
impl<'a> Unpin for Executor<'a>
impl<'a> UnwindSafe for Executor<'a>
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