[][src]Struct pwn::time::delay_queue::Expired

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

An entry in DelayQueue that has expired and removed.

Values are returned by DelayQueue::poll.

Implementations

impl<T> Expired<T>[src]

pub fn get_ref(&self) -> &T

Important traits for &'_ mut F

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
[src]

Returns a reference to the inner value.

pub fn get_mut(&mut self) -> &mut T

Important traits for &'_ mut F

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
[src]

Returns a mutable reference to the inner value.

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

Consumes self and returns the inner value.

pub fn deadline(&self) -> Instant[src]

Returns the deadline that the expiration was set to.

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

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

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

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

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.