pub struct DeadlineHandle(/* private fields */);Expand description
Represents a on_deadline handler.
Drop all clones of this handle to cancel the timer, or call perm to drop the handle
without cancelling the timer.
Implementations§
Source§impl DeadlineHandle
impl DeadlineHandle
Sourcepub fn dummy() -> DeadlineHandle
pub fn dummy() -> DeadlineHandle
Create a handle to nothing, the handle always in the canceled state.
Note that Option<DeadlineHandle> takes up the same space as DeadlineHandle and avoids an allocation.
Sourcepub fn perm(self)
pub fn perm(self)
Drops the handle but does not drop the handler closure.
The handler closure will be dropped after it is executed or when the app exits.
Sourcepub fn is_permanent(&self) -> bool
pub fn is_permanent(&self) -> bool
Sourcepub fn cancel(self)
pub fn cancel(self)
Drops the handle and forces the handler to drop.
If the deadline has not been reached the handler will not be called, and will drop in the next app update.
Sourcepub fn deadline(&self) -> Deadline
pub fn deadline(&self) -> Deadline
The timeout deadline.
The handler is called once when this deadline is reached.
Sourcepub fn has_executed(&self) -> bool
pub fn has_executed(&self) -> bool
If the handler has executed. The handler executes once when the deadline is reached.
Sourcepub fn is_canceled(&self) -> bool
pub fn is_canceled(&self) -> bool
If the timeout handler will never execute. Returns true if cancel was called
before the handler could execute.
Sourcepub fn downgrade(&self) -> WeakDeadlineHandle
pub fn downgrade(&self) -> WeakDeadlineHandle
Create a weak handle to the deadline.
Trait Implementations§
Source§impl Clone for DeadlineHandle
impl Clone for DeadlineHandle
Source§fn clone(&self) -> DeadlineHandle
fn clone(&self) -> DeadlineHandle
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for DeadlineHandle
impl Debug for DeadlineHandle
Source§impl Hash for DeadlineHandle
impl Hash for DeadlineHandle
Source§impl PartialEq for DeadlineHandle
impl PartialEq for DeadlineHandle
impl Eq for DeadlineHandle
impl StructuralPartialEq for DeadlineHandle
Auto Trait Implementations§
impl Freeze for DeadlineHandle
impl RefUnwindSafe for DeadlineHandle
impl Send for DeadlineHandle
impl Sync for DeadlineHandle
impl Unpin for DeadlineHandle
impl UnwindSafe for DeadlineHandle
Blanket Implementations§
Source§impl<T> AnyVarValue for T
impl<T> AnyVarValue for T
Source§fn clone_boxed(&self) -> BoxAnyVarValue
fn clone_boxed(&self) -> BoxAnyVarValue
Source§fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
self and other are equal.Source§fn try_swap(&mut self, other: &mut (dyn AnyVarValue + 'static)) -> bool
fn try_swap(&mut self, other: &mut (dyn AnyVarValue + 'static)) -> bool
other if both are of the same type.Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more