pub struct GetNodeStackTraces {
pub method: GetNodeStackTracesMethod,
pub params: GetNodeStackTracesParams,
}Expand description
Gets stack traces associated with a Node. As of now, only provides stack trace for Node creation. getNodeStackTraces
Fields§
§method: GetNodeStackTracesMethod§params: GetNodeStackTracesParamsImplementations§
Source§impl GetNodeStackTraces
impl GetNodeStackTraces
pub fn builder() -> GetNodeStackTracesBuilder
Source§impl GetNodeStackTraces
impl GetNodeStackTraces
pub const IDENTIFIER: &'static str = "DOM.getNodeStackTraces"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetNodeStackTraces
impl Clone for GetNodeStackTraces
Source§fn clone(&self) -> GetNodeStackTraces
fn clone(&self) -> GetNodeStackTraces
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 GetNodeStackTraces
impl CommandResult for GetNodeStackTraces
type Result = GetNodeStackTracesResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetNodeStackTraces
impl Debug for GetNodeStackTraces
Source§impl<'de> Deserialize<'de> for GetNodeStackTraces
impl<'de> Deserialize<'de> for GetNodeStackTraces
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<GetNodeStackTraces> for BrowserProtocolCommands
impl From<GetNodeStackTraces> for BrowserProtocolCommands
Source§fn from(v: GetNodeStackTraces) -> Self
fn from(v: GetNodeStackTraces) -> Self
Converts to this type from the input type.
Source§impl From<GetNodeStackTraces> for Command
impl From<GetNodeStackTraces> for Command
Source§fn from(v: GetNodeStackTraces) -> Self
fn from(v: GetNodeStackTraces) -> Self
Converts to this type from the input type.
Source§impl From<GetNodeStackTraces> for DomCommands
impl From<GetNodeStackTraces> for DomCommands
Source§fn from(v: GetNodeStackTraces) -> Self
fn from(v: GetNodeStackTraces) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetNodeStackTraces
impl PartialEq for GetNodeStackTraces
Source§impl Serialize for GetNodeStackTraces
impl Serialize for GetNodeStackTraces
Source§impl TryFrom<BrowserProtocolCommands> for GetNodeStackTraces
impl TryFrom<BrowserProtocolCommands> for GetNodeStackTraces
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <GetNodeStackTraces as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetNodeStackTraces as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetNodeStackTraces
impl TryFrom<Command> for GetNodeStackTraces
Source§impl TryFrom<DomCommands> for GetNodeStackTraces
impl TryFrom<DomCommands> for GetNodeStackTraces
Source§type Error = DomCommands
type Error = DomCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DomCommands,
) -> Result<Self, <GetNodeStackTraces as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <GetNodeStackTraces as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetNodeStackTraces
Auto Trait Implementations§
impl Freeze for GetNodeStackTraces
impl RefUnwindSafe for GetNodeStackTraces
impl Send for GetNodeStackTraces
impl Sync for GetNodeStackTraces
impl Unpin for GetNodeStackTraces
impl UnsafeUnpin for GetNodeStackTraces
impl UnwindSafe for GetNodeStackTraces
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