pub struct ExecutorScheduler<E>where
E: FuturesExecutor + Sync,{ /* private fields */ }Expand description
A wrapper for schedulers from the executors crate
Implementations§
Source§impl<E> ExecutorScheduler<E>where
E: FuturesExecutor + Sync + 'static,
impl<E> ExecutorScheduler<E>where
E: FuturesExecutor + Sync + 'static,
Trait Implementations§
Source§impl<E> Clone for ExecutorScheduler<E>
impl<E> Clone for ExecutorScheduler<E>
Source§fn clone(&self) -> ExecutorScheduler<E>
fn clone(&self) -> ExecutorScheduler<E>
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<E> Scheduler for ExecutorScheduler<E>where
E: FuturesExecutor + Sync + 'static,
impl<E> Scheduler for ExecutorScheduler<E>where
E: FuturesExecutor + Sync + 'static,
Auto Trait Implementations§
impl<E> Freeze for ExecutorScheduler<E>where
E: Freeze,
impl<E> RefUnwindSafe for ExecutorScheduler<E>where
E: RefUnwindSafe,
impl<E> Send for ExecutorScheduler<E>
impl<E> Sync for ExecutorScheduler<E>
impl<E> Unpin for ExecutorScheduler<E>where
E: Unpin,
impl<E> UnsafeUnpin for ExecutorScheduler<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for ExecutorScheduler<E>where
E: 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