pub struct SetNodeStackTracesEnabled {
pub method: SetNodeStackTracesEnabledMethod,
pub params: SetNodeStackTracesEnabledParams,
}Expand description
Sets if stack traces should be captured for Nodes. See Node.getNodeStackTraces. Default is disabled.
setNodeStackTracesEnabled
Fields§
§method: SetNodeStackTracesEnabledMethod§params: SetNodeStackTracesEnabledParamsImplementations§
Source§impl SetNodeStackTracesEnabled
impl SetNodeStackTracesEnabled
pub const IDENTIFIER: &'static str = "DOM.setNodeStackTracesEnabled"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetNodeStackTracesEnabled
impl Clone for SetNodeStackTracesEnabled
Source§fn clone(&self) -> SetNodeStackTracesEnabled
fn clone(&self) -> SetNodeStackTracesEnabled
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 SetNodeStackTracesEnabled
impl CommandResult for SetNodeStackTracesEnabled
type Result = SetNodeStackTracesEnabledResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetNodeStackTracesEnabled
impl Debug for SetNodeStackTracesEnabled
Source§impl<'de> Deserialize<'de> for SetNodeStackTracesEnabled
impl<'de> Deserialize<'de> for SetNodeStackTracesEnabled
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<SetNodeStackTracesEnabled> for BrowserProtocolCommands
impl From<SetNodeStackTracesEnabled> for BrowserProtocolCommands
Source§fn from(v: SetNodeStackTracesEnabled) -> Self
fn from(v: SetNodeStackTracesEnabled) -> Self
Converts to this type from the input type.
Source§impl From<SetNodeStackTracesEnabled> for Command
impl From<SetNodeStackTracesEnabled> for Command
Source§fn from(v: SetNodeStackTracesEnabled) -> Self
fn from(v: SetNodeStackTracesEnabled) -> Self
Converts to this type from the input type.
Source§impl From<SetNodeStackTracesEnabled> for DomCommands
impl From<SetNodeStackTracesEnabled> for DomCommands
Source§fn from(v: SetNodeStackTracesEnabled) -> Self
fn from(v: SetNodeStackTracesEnabled) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BrowserProtocolCommands> for SetNodeStackTracesEnabled
impl TryFrom<BrowserProtocolCommands> for SetNodeStackTracesEnabled
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, <SetNodeStackTracesEnabled as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetNodeStackTracesEnabled as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetNodeStackTracesEnabled
impl TryFrom<Command> for SetNodeStackTracesEnabled
Source§impl TryFrom<DomCommands> for SetNodeStackTracesEnabled
impl TryFrom<DomCommands> for SetNodeStackTracesEnabled
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, <SetNodeStackTracesEnabled as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <SetNodeStackTracesEnabled as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetNodeStackTracesEnabled
Auto Trait Implementations§
impl Freeze for SetNodeStackTracesEnabled
impl RefUnwindSafe for SetNodeStackTracesEnabled
impl Send for SetNodeStackTracesEnabled
impl Sync for SetNodeStackTracesEnabled
impl Unpin for SetNodeStackTracesEnabled
impl UnsafeUnpin for SetNodeStackTracesEnabled
impl UnwindSafe for SetNodeStackTracesEnabled
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