Struct tokio::executor::current_thread::Handle [−][src]
pub struct Handle { /* fields omitted */ }
Handle to spawn a future on the corresponding CurrentThread
instance
Methods
impl Handle
[src]
impl Handle
pub fn spawn<F>(&self, future: F) -> Result<(), SpawnError> where
F: Future<Item = (), Error = ()> + Send + 'static,
[src]
pub fn spawn<F>(&self, future: F) -> Result<(), SpawnError> where
F: Future<Item = (), Error = ()> + Send + 'static,
Spawn a future onto the CurrentThread
instance corresponding to this handle
Panics
This function panics if the spawn fails. Failure occurs if the CurrentThread
instance of the Handle
does not exist anymore.
Trait Implementations
impl Clone for Handle
[src]
impl Clone for Handle
fn clone(&self) -> Handle
[src]
fn clone(&self) -> Handle
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl Debug for Handle
[src]
impl Debug for Handle