pub enum ToastAsyncMsg {
Upsert {
window: AppWindowId,
request: ToastRequest,
},
Dismiss {
window: AppWindowId,
id: ToastId,
},
}Variants§
Trait Implementations§
Source§impl Clone for ToastAsyncMsg
impl Clone for ToastAsyncMsg
Source§fn clone(&self) -> ToastAsyncMsg
fn clone(&self) -> ToastAsyncMsg
Returns a duplicate of the value. Read more
1.0.0 · 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 ToastAsyncMsg
impl RefUnwindSafe for ToastAsyncMsg
impl Send for ToastAsyncMsg
impl Sync for ToastAsyncMsg
impl Unpin for ToastAsyncMsg
impl UnsafeUnpin for ToastAsyncMsg
impl UnwindSafe for ToastAsyncMsg
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