[][src]Struct tokio_timer::delay_queue::Expired

pub struct Expired<T> { /* fields omitted */ }

An entry in DelayQueue that has expired and removed.

Values are returned by DelayQueue::poll.

Methods

impl<T> Expired<T>[src]

pub fn get_ref(&self) -> &T[src]

Returns a reference to the inner value.

pub fn get_mut(&mut self) -> &mut T[src]

Returns a mutable reference to the inner value.

pub fn into_inner(self) -> T[src]

Consumes self and returns the inner value.

Trait Implementations

impl<T: Debug> Debug for Expired<T>[src]

Auto Trait Implementations

impl<T> Send for Expired<T> where
    T: Send

impl<T> Sync for Expired<T> where
    T: Sync

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.