pub enum IdleCallbackHandle {
Real(IdleCallbackHandleReal),
Polyfill(TimeoutCallbackHandle),
}
Expand description
Variants§
Real(IdleCallbackHandleReal)
wrapper to the real web native IdleCallbackHandle
Polyfill(TimeoutCallbackHandle)
Trait Implementations§
Source§impl Clone for IdleCallbackHandle
impl Clone for IdleCallbackHandle
Source§fn clone(&self) -> IdleCallbackHandle
fn clone(&self) -> IdleCallbackHandle
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 moreAuto Trait Implementations§
impl Freeze for IdleCallbackHandle
impl !RefUnwindSafe for IdleCallbackHandle
impl !Send for IdleCallbackHandle
impl !Sync for IdleCallbackHandle
impl Unpin for IdleCallbackHandle
impl !UnwindSafe for IdleCallbackHandle
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