pub struct GetStackTrace {
pub method: GetStackTraceMethod,
pub params: GetStackTraceParams,
}Expand description
Returns stack trace with given stackTraceId.
getStackTrace
Fields§
§method: GetStackTraceMethod§params: GetStackTraceParamsImplementations§
Source§impl GetStackTrace
impl GetStackTrace
pub fn builder() -> GetStackTraceBuilder
Source§impl GetStackTrace
impl GetStackTrace
pub const IDENTIFIER: &'static str = "Debugger.getStackTrace"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetStackTrace
impl Clone for GetStackTrace
Source§fn clone(&self) -> GetStackTrace
fn clone(&self) -> GetStackTrace
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 CommandResult for GetStackTrace
impl CommandResult for GetStackTrace
type Result = GetStackTraceResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetStackTrace
impl Debug for GetStackTrace
Source§impl<'de> Deserialize<'de> for GetStackTrace
impl<'de> Deserialize<'de> for GetStackTrace
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 From<GetStackTrace> for Command
impl From<GetStackTrace> for Command
Source§fn from(v: GetStackTrace) -> Self
fn from(v: GetStackTrace) -> Self
Converts to this type from the input type.
Source§impl From<GetStackTrace> for DebuggerCommands
impl From<GetStackTrace> for DebuggerCommands
Source§fn from(v: GetStackTrace) -> Self
fn from(v: GetStackTrace) -> Self
Converts to this type from the input type.
Source§impl From<GetStackTrace> for JsProtocolCommands
impl From<GetStackTrace> for JsProtocolCommands
Source§fn from(v: GetStackTrace) -> Self
fn from(v: GetStackTrace) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetStackTrace
impl PartialEq for GetStackTrace
Source§impl Serialize for GetStackTrace
impl Serialize for GetStackTrace
Source§impl TryFrom<Command> for GetStackTrace
impl TryFrom<Command> for GetStackTrace
Source§impl TryFrom<DebuggerCommands> for GetStackTrace
impl TryFrom<DebuggerCommands> for GetStackTrace
Source§type Error = DebuggerCommands
type Error = DebuggerCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DebuggerCommands,
) -> Result<Self, <GetStackTrace as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <GetStackTrace as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for GetStackTrace
impl TryFrom<JsProtocolCommands> for GetStackTrace
Source§type Error = JsProtocolCommands
type Error = JsProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: JsProtocolCommands,
) -> Result<Self, <GetStackTrace as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <GetStackTrace as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetStackTrace
Auto Trait Implementations§
impl Freeze for GetStackTrace
impl RefUnwindSafe for GetStackTrace
impl Send for GetStackTrace
impl Sync for GetStackTrace
impl Unpin for GetStackTrace
impl UnsafeUnpin for GetStackTrace
impl UnwindSafe for GetStackTrace
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