[−][src]Struct calloop::timer::TimerHandle
An handle to a timer, used to set or cancel timeouts
This handle can be cloned, and can be sent accross thread as long
as T: Send.
Methods
impl<T> TimerHandle<T>[src]
pub fn add_timeout(&self, delay_from_now: Duration, data: T) -> Timeout[src]
Set a new timeout
The associated data will be given as argument to the callback.
The returned Timeout can be used to cancel it. You can drop it if you don't
plan to cancel this timeout.
This method can fail if the timer already has too many pending timeouts, currently
capacity is 2^16.
pub fn cancel_timeout(&self, timeout: &Timeout) -> Option<T>[src]
Cancel a previsouly set timeout and retrieve the associated data
This method returns None if the timeout does not exist (it has already fired
or has already been cancelled).
Trait Implementations
impl<T> Clone for TimerHandle<T>[src]
fn clone(&self) -> TimerHandle<T>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
Auto Trait Implementations
impl<T> Send for TimerHandle<T> where
T: Send,
T: Send,
impl<T> Sync for TimerHandle<T> where
T: Send,
T: Send,
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
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]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,