pub enum Notification {
NewState(State),
}Expand description
A Notification from the engine to the app
Variants§
Implementations§
Source§impl Notification
impl Notification
Sourcepub fn new_new_state(f0: State) -> Self
pub fn new_new_state(f0: State) -> Self
Constructs a new Notification::NewState.
Trait Implementations§
Source§impl Debug for Notification
impl Debug for Notification
Auto Trait Implementations§
impl Freeze for Notification
impl RefUnwindSafe for Notification
impl Send for Notification
impl Sync for Notification
impl Unpin for Notification
impl UnsafeUnpin for Notification
impl UnwindSafe for Notification
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