#[non_exhaustive]pub struct PlatformEventLoopSleep {
pub timeout: Option<Duration>,
pub processing_duration: Duration,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.timeout: Option<Duration>The next time at which the event loop will wake
processing_duration: DurationThe amount of time spent processing endpoint events in a single event loop
Trait Implementations§
Source§impl Clone for PlatformEventLoopSleep
impl Clone for PlatformEventLoopSleep
Source§fn clone(&self) -> PlatformEventLoopSleep
fn clone(&self) -> PlatformEventLoopSleep
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlatformEventLoopSleep
impl Debug for PlatformEventLoopSleep
Source§impl Event for PlatformEventLoopSleep
impl Event for PlatformEventLoopSleep
Source§impl IntoEvent<PlatformEventLoopSleep> for PlatformEventLoopSleep
impl IntoEvent<PlatformEventLoopSleep> for PlatformEventLoopSleep
fn into_event(self) -> PlatformEventLoopSleep
Auto Trait Implementations§
impl Freeze for PlatformEventLoopSleep
impl RefUnwindSafe for PlatformEventLoopSleep
impl Send for PlatformEventLoopSleep
impl Sync for PlatformEventLoopSleep
impl Unpin for PlatformEventLoopSleep
impl UnwindSafe for PlatformEventLoopSleep
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)