Struct calloop::timer::TimerHandle

source ·
pub struct TimerHandle<T> { /* private fields */ }
Expand description

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

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.

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

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.