pub enum PluginRuntimeEvent {
TurnCommitted(Arc<AssembledTurn>),
TurnPersisted(SessionStateChangedContext),
SessionRestored(SessionReadView),
SessionConfigChanged(Box<SessionConfigChangedContext>),
}Variants§
TurnCommitted(Arc<AssembledTurn>)
TurnPersisted(SessionStateChangedContext)
SessionRestored(SessionReadView)
SessionConfigChanged(Box<SessionConfigChangedContext>)
Trait Implementations§
Source§impl Clone for PluginRuntimeEvent
impl Clone for PluginRuntimeEvent
Source§fn clone(&self) -> PluginRuntimeEvent
fn clone(&self) -> PluginRuntimeEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PluginRuntimeEvent
impl !RefUnwindSafe for PluginRuntimeEvent
impl Send for PluginRuntimeEvent
impl Sync for PluginRuntimeEvent
impl Unpin for PluginRuntimeEvent
impl UnsafeUnpin for PluginRuntimeEvent
impl !UnwindSafe for PluginRuntimeEvent
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