pub struct EventLoopResult {
pub completed: bool,
pub macrotasks_executed: usize,
pub timers_fired: usize,
pub animation_callbacks_executed: usize,
pub macrotasks_remaining: usize,
pub timers_remaining: usize,
pub animation_callbacks_remaining: usize,
}Fields§
§completed: bool§macrotasks_executed: usize§timers_fired: usize§animation_callbacks_executed: usize§macrotasks_remaining: usize§timers_remaining: usize§animation_callbacks_remaining: usizeTrait Implementations§
Source§impl Clone for EventLoopResult
impl Clone for EventLoopResult
Source§fn clone(&self) -> EventLoopResult
fn clone(&self) -> EventLoopResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EventLoopResult
impl RefUnwindSafe for EventLoopResult
impl Send for EventLoopResult
impl Sync for EventLoopResult
impl Unpin for EventLoopResult
impl UnsafeUnpin for EventLoopResult
impl UnwindSafe for EventLoopResult
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