pub struct LocalExecutorHandle<Q> { /* private fields */ }
Expand description
A handle to an executor allowing submission of tasks. This handle may not be sent across threads but can submit !Send
futures.
Implementations§
Trait Implementations§
Source§impl<Q> Clone for LocalExecutorHandle<Q>
impl<Q> Clone for LocalExecutorHandle<Q>
Auto Trait Implementations§
impl<Q> Freeze for LocalExecutorHandle<Q>
impl<Q> RefUnwindSafe for LocalExecutorHandle<Q>where
Q: RefUnwindSafe,
impl<Q> !Send for LocalExecutorHandle<Q>
impl<Q> !Sync for LocalExecutorHandle<Q>
impl<Q> Unpin for LocalExecutorHandle<Q>
impl<Q> UnwindSafe for LocalExecutorHandle<Q>where
Q: RefUnwindSafe,
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