pub struct PausedEventParams {
pub call_frames: Vec<CallFrame>,
pub reason: PausedReasonOption,
pub hit_breakpoints: Option<Vec<String>>,
pub async_stack_trace: Option<StackTrace>,
pub async_stack_trace_id: Option<StackTraceId>,
pub async_call_stack_trace_id: Option<StackTraceId>,
}Fields§
§call_frames: Vec<CallFrame>§reason: PausedReasonOption§hit_breakpoints: Option<Vec<String>>§async_stack_trace: Option<StackTrace>§async_stack_trace_id: Option<StackTraceId>§async_call_stack_trace_id: Option<StackTraceId>Trait Implementations§
Source§impl Clone for PausedEventParams
impl Clone for PausedEventParams
Source§fn clone(&self) -> PausedEventParams
fn clone(&self) -> PausedEventParams
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 PausedEventParams
impl Debug for PausedEventParams
Source§impl<'de> Deserialize<'de> for PausedEventParams
impl<'de> Deserialize<'de> for PausedEventParams
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
Source§impl PartialEq for PausedEventParams
impl PartialEq for PausedEventParams
Source§impl Serialize for PausedEventParams
impl Serialize for PausedEventParams
impl StructuralPartialEq for PausedEventParams
Auto Trait Implementations§
impl Freeze for PausedEventParams
impl RefUnwindSafe for PausedEventParams
impl Send for PausedEventParams
impl Sync for PausedEventParams
impl Unpin for PausedEventParams
impl UnwindSafe for PausedEventParams
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