[−][src]Struct websocket::server::async::Handle
A non-sendable handle to an event loop, useful for manufacturing instances
of LoopData.
Methods
impl Handle[src]
impl Handlepub fn new_tokio_handle(&self) -> &Handle[src]
pub fn new_tokio_handle(&self) -> &HandleReturns a reference to the new Tokio handle
pub fn remote(&self) -> &Remote[src]
pub fn remote(&self) -> &RemoteReturns a reference to the underlying remote handle to the event loop.
pub fn spawn<F>(&self, f: F) where
F: Future<Item = (), Error = ()> + 'static, [src]
pub fn spawn<F>(&self, f: F) where
F: Future<Item = (), Error = ()> + 'static, Spawns a new future on the event loop this handle is associated with.
Panics
This method will not catch panics from polling the future f. If
the future panics then it's the responsibility of the caller to catch
that panic and handle it as appropriate.
pub fn spawn_send<F>(&self, f: F) where
F: Future<Item = (), Error = ()> + Send + 'static, [src]
pub fn spawn_send<F>(&self, f: F) where
F: Future<Item = (), Error = ()> + Send + 'static, Spawns a new future onto the threadpool
Panics
This function panics if the spawn fails. Failure occurs if the executor is currently at capacity and is unable to spawn a new future.
pub fn spawn_fn<F, R>(&self, f: F) where
F: FnOnce() -> R + 'static,
R: IntoFuture<Item = (), Error = ()> + 'static, [src]
pub fn spawn_fn<F, R>(&self, f: F) where
F: FnOnce() -> R + 'static,
R: IntoFuture<Item = (), Error = ()> + 'static, Spawns a closure on this event loop.
This function is a convenience wrapper around the spawn function above
for running a closure wrapped in futures::lazy. It will spawn the
function f provided onto the event loop, and continue to run the
future returned by f on the event loop as well.
Panics
This method will not catch panics from polling the future f. If
the future panics then it's the responsibility of the caller to catch
that panic and handle it as appropriate.
pub fn id(&self) -> CoreId[src]
pub fn id(&self) -> CoreIdReturn the ID of the represented Core
Trait Implementations
impl Debug for Handle[src]
impl Debug for Handlefn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl<F> Executor<F> for Handle where
F: Future<Item = (), Error = ()> + 'static, [src]
impl<F> Executor<F> for Handle where
F: Future<Item = (), Error = ()> + 'static, fn execute(&self, future: F) -> Result<(), ExecuteError<F>>[src]
fn execute(&self, future: F) -> Result<(), ExecuteError<F>>Spawns a future to run on this Executor, typically in the "background". Read more
impl Clone for Handle[src]
impl Clone for HandleAuto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, type Owned = T
fn to_owned(&self) -> T[src]
fn to_owned(&self) -> TCreates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)[src]
fn clone_into(&self, target: &mut T)🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> From for T[src]
impl<T> From for Timpl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>try_from)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more
impl<T> Typeable for T where
T: Any, [src]
impl<T> Typeable for T where
T: Any, impl<T> Erased for T[src]
impl<T> Erased for T