pub struct EventLoopIterationContext<'a, T: UserEvent> {
pub callback: &'a mut (dyn FnMut(RunEvent<T>) + 'static),
pub webview_id_map: WebviewIdStore,
pub windows: Arc<WindowsStore>,
pub is_event_loop_ready: Arc<AtomicBool>,
pub pending_ready_tasks: &'a RefCell<Vec<Box<dyn FnOnce(&EventLoopWindowTarget<Message<T>>)>>>,
}
Fields§
§callback: &'a mut (dyn FnMut(RunEvent<T>) + 'static)
§webview_id_map: WebviewIdStore
§windows: Arc<WindowsStore>
§is_event_loop_ready: Arc<AtomicBool>
§pending_ready_tasks: &'a RefCell<Vec<Box<dyn FnOnce(&EventLoopWindowTarget<Message<T>>)>>>
Auto Trait Implementations§
impl<'a, T> Freeze for EventLoopIterationContext<'a, T>
impl<'a, T> !RefUnwindSafe for EventLoopIterationContext<'a, T>
impl<'a, T> !Send for EventLoopIterationContext<'a, T>
impl<'a, T> !Sync for EventLoopIterationContext<'a, T>
impl<'a, T> Unpin for EventLoopIterationContext<'a, T>
impl<'a, T> !UnwindSafe for EventLoopIterationContext<'a, T>
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