pub enum TraceLowLevelEvent {
Show 24 variants
Step(StepRecord),
Path(PathBuf),
VariableName(String),
Variable(String),
Type(TypeRecord),
Value(FullValueRecord),
Function(FunctionRecord),
Call(CallRecord),
Return(ReturnRecord),
Event(RecordEvent),
Asm(Vec<String>),
BindVariable(BindVariableRecord),
Assignment(AssignmentRecord),
DropVariables(Vec<VariableId>),
CompoundValue(CompoundValueRecord),
CellValue(CellValueRecord),
AssignCompoundItem(AssignCompoundItemRecord),
AssignCell(AssignCellRecord),
VariableCell(VariableCellRecord),
DropVariable(VariableId),
ThreadStart(ThreadId),
ThreadExit(ThreadId),
ThreadSwitch(ThreadId),
DropLastStep,
}Expand description
Low level building blocks that make up a recorded trace.
Variants§
Step(StepRecord)
Path(PathBuf)
VariableName(String)
Variable(String)
Type(TypeRecord)
Value(FullValueRecord)
Function(FunctionRecord)
Call(CallRecord)
Return(ReturnRecord)
Event(RecordEvent)
Asm(Vec<String>)
BindVariable(BindVariableRecord)
Assignment(AssignmentRecord)
DropVariables(Vec<VariableId>)
CompoundValue(CompoundValueRecord)
CellValue(CellValueRecord)
AssignCompoundItem(AssignCompoundItemRecord)
AssignCell(AssignCellRecord)
VariableCell(VariableCellRecord)
DropVariable(VariableId)
ThreadStart(ThreadId)
ThreadExit(ThreadId)
ThreadSwitch(ThreadId)
DropLastStep
Trait Implementations§
Source§impl Clone for TraceLowLevelEvent
impl Clone for TraceLowLevelEvent
Source§fn clone(&self) -> TraceLowLevelEvent
fn clone(&self) -> TraceLowLevelEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TraceLowLevelEvent
impl Debug for TraceLowLevelEvent
Source§impl<'de> Deserialize<'de> for TraceLowLevelEvent
impl<'de> Deserialize<'de> for TraceLowLevelEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TraceLowLevelEvent
impl RefUnwindSafe for TraceLowLevelEvent
impl Send for TraceLowLevelEvent
impl Sync for TraceLowLevelEvent
impl Unpin for TraceLowLevelEvent
impl UnwindSafe for TraceLowLevelEvent
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