Enum AppRequest
pub enum AppRequest<T> {
OpenWindow(Window, Box<dyn FnMut(&mut T) -> Box<dyn AnyView<T>>>),
CloseWindow(WindowId),
DragWindow(WindowId),
RequestRedraw(WindowId),
UpdateWindow(WindowId, WindowUpdate),
Quit,
}
Expand description
Requests that an application can make to the platform.
Variants§
OpenWindow(Window, Box<dyn FnMut(&mut T) -> Box<dyn AnyView<T>>>)
Open a new window.
CloseWindow(WindowId)
Close a window.
DragWindow(WindowId)
Drag a window.
RequestRedraw(WindowId)
Redraw a window.
UpdateWindow(WindowId, WindowUpdate)
Update a window.
Quit
Quit the application.
Auto Trait Implementations§
impl<T> Freeze for AppRequest<T>
impl<T> !RefUnwindSafe for AppRequest<T>
impl<T> !Send for AppRequest<T>
impl<T> !Sync for AppRequest<T>
impl<T> Unpin for AppRequest<T>
impl<T> !UnwindSafe for AppRequest<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