pub enum Message<T: 'static> {
Task(Box<dyn FnOnce() + Send>),
RequestExit(i32),
Window(WindowId, WindowMessage),
Webview(WindowId, WebviewId, WebviewMessage),
EventLoopWindowTarget(EventLoopWindowTargetMessage),
CreateWebview(WindowId, CreateWebviewClosure),
CreateWindow(WindowId, CreateWindowClosure<T>),
CreateRawWindow(WindowId, Box<dyn FnOnce() -> (String, TaoWindowBuilder) + Send>, Sender<Result<Weak<Window>>>),
UserEvent(T),
}
Variants§
Task(Box<dyn FnOnce() + Send>)
RequestExit(i32)
Window(WindowId, WindowMessage)
Webview(WindowId, WebviewId, WebviewMessage)
EventLoopWindowTarget(EventLoopWindowTargetMessage)
CreateWebview(WindowId, CreateWebviewClosure)
CreateWindow(WindowId, CreateWindowClosure<T>)
CreateRawWindow(WindowId, Box<dyn FnOnce() -> (String, TaoWindowBuilder) + Send>, Sender<Result<Weak<Window>>>)
UserEvent(T)
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Message<T>where
T: Freeze,
impl<T> !RefUnwindSafe for Message<T>
impl<T> Send for Message<T>where
T: Send,
impl<T> !Sync for Message<T>
impl<T> Unpin for Message<T>where
T: Unpin,
impl<T> !UnwindSafe for Message<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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)