[][src]Struct fibers::io::poll::PollerHandle

pub struct PollerHandle { /* fields omitted */ }

A handle of a poller.

Methods

impl PollerHandle[src]

pub fn is_alive(&self) -> bool[src]

Returns true if the original poller maybe alive, otherwise false.

pub fn register<E>(&mut self, evented: E) -> Register<E> where
    E: Evented + Send + 'static, 
[src]

Makes a future to register new evented object to the poller.

Trait Implementations

impl Clone for PollerHandle[src]

impl Debug for PollerHandle[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]