pub enum ExecutionControllerEvent {
OnStop {
stopped_payload: StoppedPayload,
},
_UnknownEvent {
ordinal: u64,
},
}
Variants§
Implementations§
source§impl ExecutionControllerEvent
impl ExecutionControllerEvent
pub fn into_on_stop(self) -> Option<StoppedPayload>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExecutionControllerEvent
impl RefUnwindSafe for ExecutionControllerEvent
impl Send for ExecutionControllerEvent
impl Sync for ExecutionControllerEvent
impl Unpin for ExecutionControllerEvent
impl UnwindSafe for ExecutionControllerEvent
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