pub struct SetAttachDebugStack {
pub method: SetAttachDebugStackMethod,
pub params: SetAttachDebugStackParams,
}Expand description
Specifies whether to attach a page script stack id in requests setAttachDebugStack
Fields§
§method: SetAttachDebugStackMethod§params: SetAttachDebugStackParamsImplementations§
Source§impl SetAttachDebugStack
impl SetAttachDebugStack
pub fn builder() -> SetAttachDebugStackBuilder
Source§impl SetAttachDebugStack
impl SetAttachDebugStack
pub const IDENTIFIER: &'static str = "Network.setAttachDebugStack"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetAttachDebugStack
impl Clone for SetAttachDebugStack
Source§fn clone(&self) -> SetAttachDebugStack
fn clone(&self) -> SetAttachDebugStack
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 SetAttachDebugStack
impl CommandResult for SetAttachDebugStack
type Result = SetAttachDebugStackResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetAttachDebugStack
impl Debug for SetAttachDebugStack
Source§impl<'de> Deserialize<'de> for SetAttachDebugStack
impl<'de> Deserialize<'de> for SetAttachDebugStack
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<SetAttachDebugStack> for BrowserProtocolCommands
impl From<SetAttachDebugStack> for BrowserProtocolCommands
Source§fn from(v: SetAttachDebugStack) -> Self
fn from(v: SetAttachDebugStack) -> Self
Converts to this type from the input type.
Source§impl From<SetAttachDebugStack> for Command
impl From<SetAttachDebugStack> for Command
Source§fn from(v: SetAttachDebugStack) -> Self
fn from(v: SetAttachDebugStack) -> Self
Converts to this type from the input type.
Source§impl From<SetAttachDebugStack> for NetworkCommands
impl From<SetAttachDebugStack> for NetworkCommands
Source§fn from(v: SetAttachDebugStack) -> Self
fn from(v: SetAttachDebugStack) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetAttachDebugStack
impl PartialEq for SetAttachDebugStack
Source§impl Serialize for SetAttachDebugStack
impl Serialize for SetAttachDebugStack
Source§impl TryFrom<BrowserProtocolCommands> for SetAttachDebugStack
impl TryFrom<BrowserProtocolCommands> for SetAttachDebugStack
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, <SetAttachDebugStack as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetAttachDebugStack as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetAttachDebugStack
impl TryFrom<Command> for SetAttachDebugStack
Source§impl TryFrom<NetworkCommands> for SetAttachDebugStack
impl TryFrom<NetworkCommands> for SetAttachDebugStack
Source§type Error = NetworkCommands
type Error = NetworkCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: NetworkCommands,
) -> Result<Self, <SetAttachDebugStack as TryFrom<NetworkCommands>>::Error>
fn try_from( e: NetworkCommands, ) -> Result<Self, <SetAttachDebugStack as TryFrom<NetworkCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetAttachDebugStack
Auto Trait Implementations§
impl Freeze for SetAttachDebugStack
impl RefUnwindSafe for SetAttachDebugStack
impl Send for SetAttachDebugStack
impl Sync for SetAttachDebugStack
impl Unpin for SetAttachDebugStack
impl UnsafeUnpin for SetAttachDebugStack
impl UnwindSafe for SetAttachDebugStack
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