pub struct SetXhrBreakpoint {
pub method: SetXhrBreakpointMethod,
pub params: SetXhrBreakpointParams,
}Expand description
Sets breakpoint on XMLHttpRequest. setXHRBreakpoint
Fields§
§method: SetXhrBreakpointMethod§params: SetXhrBreakpointParamsImplementations§
Source§impl SetXhrBreakpoint
impl SetXhrBreakpoint
pub fn builder() -> SetXhrBreakpointBuilder
Source§impl SetXhrBreakpoint
impl SetXhrBreakpoint
pub const IDENTIFIER: &'static str = "DOMDebugger.setXHRBreakpoint"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetXhrBreakpoint
impl Clone for SetXhrBreakpoint
Source§fn clone(&self) -> SetXhrBreakpoint
fn clone(&self) -> SetXhrBreakpoint
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 SetXhrBreakpoint
impl CommandResult for SetXhrBreakpoint
type Result = SetXhrBreakpointResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetXhrBreakpoint
impl Debug for SetXhrBreakpoint
Source§impl<'de> Deserialize<'de> for SetXhrBreakpoint
impl<'de> Deserialize<'de> for SetXhrBreakpoint
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<SetXhrBreakpoint> for BrowserProtocolCommands
impl From<SetXhrBreakpoint> for BrowserProtocolCommands
Source§fn from(v: SetXhrBreakpoint) -> Self
fn from(v: SetXhrBreakpoint) -> Self
Converts to this type from the input type.
Source§impl From<SetXhrBreakpoint> for Command
impl From<SetXhrBreakpoint> for Command
Source§fn from(v: SetXhrBreakpoint) -> Self
fn from(v: SetXhrBreakpoint) -> Self
Converts to this type from the input type.
Source§impl From<SetXhrBreakpoint> for DomDebuggerCommands
impl From<SetXhrBreakpoint> for DomDebuggerCommands
Source§fn from(v: SetXhrBreakpoint) -> Self
fn from(v: SetXhrBreakpoint) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetXhrBreakpoint
impl PartialEq for SetXhrBreakpoint
Source§impl Serialize for SetXhrBreakpoint
impl Serialize for SetXhrBreakpoint
Source§impl TryFrom<BrowserProtocolCommands> for SetXhrBreakpoint
impl TryFrom<BrowserProtocolCommands> for SetXhrBreakpoint
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, <SetXhrBreakpoint as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetXhrBreakpoint as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetXhrBreakpoint
impl TryFrom<Command> for SetXhrBreakpoint
Source§impl TryFrom<DomDebuggerCommands> for SetXhrBreakpoint
impl TryFrom<DomDebuggerCommands> for SetXhrBreakpoint
Source§type Error = DomDebuggerCommands
type Error = DomDebuggerCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DomDebuggerCommands,
) -> Result<Self, <SetXhrBreakpoint as TryFrom<DomDebuggerCommands>>::Error>
fn try_from( e: DomDebuggerCommands, ) -> Result<Self, <SetXhrBreakpoint as TryFrom<DomDebuggerCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetXhrBreakpoint
Auto Trait Implementations§
impl Freeze for SetXhrBreakpoint
impl RefUnwindSafe for SetXhrBreakpoint
impl Send for SetXhrBreakpoint
impl Sync for SetXhrBreakpoint
impl Unpin for SetXhrBreakpoint
impl UnsafeUnpin for SetXhrBreakpoint
impl UnwindSafe for SetXhrBreakpoint
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