Struct chromiumoxide::cdp::js_protocol::debugger::GetStackTraceParams
source · 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>) -> GetStackTraceParams
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 copy 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
§type Response = GetStackTraceReturns
type Response = GetStackTraceReturns
The type of the response this request triggers on the chromium server
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<GetStackTraceParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<GetStackTraceParams, <__D as Deserializer<'de>>::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) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
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<GetStackTraceParams> for GetStackTraceParams
impl PartialEq<GetStackTraceParams> for GetStackTraceParams
source§fn eq(&self, other: &GetStackTraceParams) -> bool
fn eq(&self, other: &GetStackTraceParams) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for GetStackTraceParams
impl Serialize for GetStackTraceParams
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more