Struct chromiumoxide::cdp::browser_protocol::dom::SetNodeStackTracesEnabledParams[][src]

pub struct SetNodeStackTracesEnabledParams {
    pub enable: bool,
}

Sets if stack traces should be captured for Nodes. See Node.getNodeStackTraces. Default is disabled. setNodeStackTracesEnabled

Fields

enable: bool

Enable or disable.

Implementations

impl SetNodeStackTracesEnabledParams[src]

impl SetNodeStackTracesEnabledParams[src]

impl SetNodeStackTracesEnabledParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for SetNodeStackTracesEnabledParams[src]

impl Command for SetNodeStackTracesEnabledParams[src]

type Response = SetNodeStackTracesEnabledReturns

The type of the response this request triggers on the chromium server

impl Debug for SetNodeStackTracesEnabledParams[src]

impl<'de> Deserialize<'de> for SetNodeStackTracesEnabledParams[src]

impl Method for SetNodeStackTracesEnabledParams[src]

impl MethodType for SetNodeStackTracesEnabledParams[src]

impl PartialEq<SetNodeStackTracesEnabledParams> for SetNodeStackTracesEnabledParams[src]

impl Serialize for SetNodeStackTracesEnabledParams[src]

impl StructuralPartialEq for SetNodeStackTracesEnabledParams[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,