Struct calloop::timer::TimerHandle [−][src]
pub struct TimerHandle<T> { /* fields omitted */ }
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
.
Implementations
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.
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).
pub fn cancel_all_timeouts(&self)
[src][−]
Cancel all planned timeouts for this timer
All associated data will be dropped.
Trait Implementations
impl<T> Clone for TimerHandle<T>
[src][+]
Auto Trait Implementations
impl<T> RefUnwindSafe for TimerHandle<T>
impl<T> Send for TimerHandle<T> where
T: Send,
T: Send,
impl<T> Sync for TimerHandle<T> where
T: Send,
T: Send,
impl<T> Unpin for TimerHandle<T>
impl<T> UnwindSafe for TimerHandle<T>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> 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<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,