pub enum DebugAgentEvent {
OnFatalException {
payload: DebugAgentOnFatalExceptionRequest,
},
_UnknownEvent {
ordinal: u64,
},
}
Variants§
Implementations§
Source§impl DebugAgentEvent
impl DebugAgentEvent
pub fn into_on_fatal_exception( self, ) -> Option<DebugAgentOnFatalExceptionRequest>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DebugAgentEvent
impl RefUnwindSafe for DebugAgentEvent
impl Send for DebugAgentEvent
impl Sync for DebugAgentEvent
impl Unpin for DebugAgentEvent
impl UnwindSafe for DebugAgentEvent
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