pub struct GetStackTraceParams {
pub stack_trace_id: StackTraceId,
}Expand description
Returns stack trace with given stackTraceId.
getStackTrace
Fields§
§stack_trace_id: StackTraceIdImplementations§
Source§impl GetStackTraceParams
impl GetStackTraceParams
pub fn new(stack_trace_id: impl Into<StackTraceId>) -> Self
Source§impl GetStackTraceParams
impl GetStackTraceParams
pub fn builder() -> GetStackTraceParamsBuilder
Source§impl GetStackTraceParams
impl GetStackTraceParams
pub const IDENTIFIER: &'static str = "Debugger.getStackTrace"
Trait Implementations§
Source§impl Clone for GetStackTraceParams
impl Clone for GetStackTraceParams
Source§fn clone(&self) -> GetStackTraceParams
fn clone(&self) -> GetStackTraceParams
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 Command for GetStackTraceParams
impl Command for GetStackTraceParams
Source§impl Debug for GetStackTraceParams
impl Debug for GetStackTraceParams
Source§impl<'de> Deserialize<'de> for GetStackTraceParams
impl<'de> Deserialize<'de> for GetStackTraceParams
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 Method for GetStackTraceParams
impl Method for GetStackTraceParams
Source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§impl MethodType for GetStackTraceParams
impl MethodType for GetStackTraceParams
Source§impl PartialEq for GetStackTraceParams
impl PartialEq for GetStackTraceParams
Source§impl Serialize for GetStackTraceParams
impl Serialize for GetStackTraceParams
impl StructuralPartialEq for GetStackTraceParams
Auto Trait Implementations§
impl Freeze for GetStackTraceParams
impl RefUnwindSafe for GetStackTraceParams
impl Send for GetStackTraceParams
impl Sync for GetStackTraceParams
impl Unpin for GetStackTraceParams
impl UnwindSafe for GetStackTraceParams
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