pub struct WaitForDebugger {
pub method: WaitForDebuggerMethod,
pub params: WaitForDebuggerParams,
}Expand description
Pauses page execution. Can be resumed using generic Runtime.runIfWaitingForDebugger. waitForDebugger
Fields§
§method: WaitForDebuggerMethod§params: WaitForDebuggerParamsImplementations§
Source§impl WaitForDebugger
impl WaitForDebugger
pub fn builder() -> WaitForDebuggerBuilder
Source§impl WaitForDebugger
impl WaitForDebugger
pub const IDENTIFIER: &'static str = "Page.waitForDebugger"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for WaitForDebugger
impl Clone for WaitForDebugger
Source§fn clone(&self) -> WaitForDebugger
fn clone(&self) -> WaitForDebugger
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 WaitForDebugger
impl CommandResult for WaitForDebugger
type Result = WaitForDebuggerResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for WaitForDebugger
impl Debug for WaitForDebugger
Source§impl<'de> Deserialize<'de> for WaitForDebugger
impl<'de> Deserialize<'de> for WaitForDebugger
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<WaitForDebugger> for BrowserProtocolCommands
impl From<WaitForDebugger> for BrowserProtocolCommands
Source§fn from(v: WaitForDebugger) -> Self
fn from(v: WaitForDebugger) -> Self
Converts to this type from the input type.
Source§impl From<WaitForDebugger> for Command
impl From<WaitForDebugger> for Command
Source§fn from(v: WaitForDebugger) -> Self
fn from(v: WaitForDebugger) -> Self
Converts to this type from the input type.
Source§impl From<WaitForDebugger> for PageCommands
impl From<WaitForDebugger> for PageCommands
Source§fn from(v: WaitForDebugger) -> Self
fn from(v: WaitForDebugger) -> Self
Converts to this type from the input type.
Source§impl PartialEq for WaitForDebugger
impl PartialEq for WaitForDebugger
Source§impl Serialize for WaitForDebugger
impl Serialize for WaitForDebugger
Source§impl TryFrom<BrowserProtocolCommands> for WaitForDebugger
impl TryFrom<BrowserProtocolCommands> for WaitForDebugger
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, <WaitForDebugger as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <WaitForDebugger as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for WaitForDebugger
impl TryFrom<Command> for WaitForDebugger
Source§impl TryFrom<PageCommands> for WaitForDebugger
impl TryFrom<PageCommands> for WaitForDebugger
Source§type Error = PageCommands
type Error = PageCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: PageCommands,
) -> Result<Self, <WaitForDebugger as TryFrom<PageCommands>>::Error>
fn try_from( e: PageCommands, ) -> Result<Self, <WaitForDebugger as TryFrom<PageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for WaitForDebugger
Auto Trait Implementations§
impl Freeze for WaitForDebugger
impl RefUnwindSafe for WaitForDebugger
impl Send for WaitForDebugger
impl Sync for WaitForDebugger
impl Unpin for WaitForDebugger
impl UnsafeUnpin for WaitForDebugger
impl UnwindSafe for WaitForDebugger
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