Enum freya_core::plugins::PluginEvent
source · pub enum PluginEvent<'a> {
WindowCreated(&'a Window),
CanvasRendered(&'a Canvas, &'a FontCollection),
}
Expand description
Event emitted to Plugins.
Variants§
WindowCreated(&'a Window)
The Window just got created.
CanvasRendered(&'a Canvas, &'a FontCollection)
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for PluginEvent<'a>
impl<'a> !Send for PluginEvent<'a>
impl<'a> !Sync for PluginEvent<'a>
impl<'a> Unpin for PluginEvent<'a>
impl<'a> !UnwindSafe for PluginEvent<'a>
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