pub enum EventModifier {
Count(i32),
ThreadOnly(ThreadId),
ClassOnly(ReferenceTypeId),
ClassMatch(String),
ClassExclude(String),
LocationOnly(Location),
ExceptionOnly {
ref_type: ReferenceTypeId,
caught: bool,
uncaught: bool,
},
FieldOnly {
ref_type: ReferenceTypeId,
field_id: FieldId,
},
Step {
thread: ThreadId,
size: i32,
depth: i32,
},
InstanceOnly(ObjectId),
}Variants§
Count(i32)
ThreadOnly(ThreadId)
ClassOnly(ReferenceTypeId)
ClassMatch(String)
ClassExclude(String)
LocationOnly(Location)
ExceptionOnly
FieldOnly
Step
InstanceOnly(ObjectId)
Trait Implementations§
Source§impl Clone for EventModifier
impl Clone for EventModifier
Source§fn clone(&self) -> EventModifier
fn clone(&self) -> EventModifier
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 EventModifier
impl RefUnwindSafe for EventModifier
impl Send for EventModifier
impl Sync for EventModifier
impl Unpin for EventModifier
impl UnsafeUnpin for EventModifier
impl UnwindSafe for EventModifier
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