Struct leptos_dom::helpers::TimeoutHandle
source · pub struct TimeoutHandle(_);
Expand description
Handle that is generated by set_timeout_with_handle and can be used to clear the timeout.
Implementations§
source§impl TimeoutHandle
impl TimeoutHandle
sourcepub fn clear(&self)
pub fn clear(&self)
Cancels the timeout to which this refers.
See clearTimeout()
Trait Implementations§
source§impl Clone for TimeoutHandle
impl Clone for TimeoutHandle
source§fn clone(&self) -> TimeoutHandle
fn clone(&self) -> TimeoutHandle
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TimeoutHandle
impl Debug for TimeoutHandle
source§impl Hash for TimeoutHandle
impl Hash for TimeoutHandle
source§impl PartialEq<TimeoutHandle> for TimeoutHandle
impl PartialEq<TimeoutHandle> for TimeoutHandle
source§fn eq(&self, other: &TimeoutHandle) -> bool
fn eq(&self, other: &TimeoutHandle) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for TimeoutHandle
impl Eq for TimeoutHandle
impl StructuralEq for TimeoutHandle
impl StructuralPartialEq for TimeoutHandle
Auto Trait Implementations§
impl RefUnwindSafe for TimeoutHandle
impl Send for TimeoutHandle
impl Sync for TimeoutHandle
impl Unpin for TimeoutHandle
impl UnwindSafe for TimeoutHandle
Blanket Implementations§
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
Mutably borrows from an owned value. Read more
source§impl<T> CallHasher for Twhere
T: Hash + ?Sized,
impl<T> CallHasher for Twhere T: Hash + ?Sized,
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.