pub enum InternalEvent {
FunctionBegin(u32),
FunctionEnd,
Breakpoint(BreakpointHandler),
SetInternal(u32),
GetInternal(u32),
}
Expand description
Kinds of InternalEvent
s created during parsing.
Variants§
FunctionBegin(u32)
A function parse is about to begin.
FunctionEnd
A function parsing has just completed.
Breakpoint(BreakpointHandler)
A breakpoint emitted during parsing.
SetInternal(u32)
Indicates setting an internal field.
GetInternal(u32)
Indicates getting an internal field.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InternalEvent
impl !RefUnwindSafe for InternalEvent
impl Send for InternalEvent
impl Sync for InternalEvent
impl Unpin for InternalEvent
impl !UnwindSafe for InternalEvent
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