pub struct RemoveXhrBreakpoint {
pub method: RemoveXhrBreakpointMethod,
pub params: RemoveXhrBreakpointParams,
}Expand description
Removes breakpoint from XMLHttpRequest. removeXHRBreakpoint
Fields§
§method: RemoveXhrBreakpointMethod§params: RemoveXhrBreakpointParamsImplementations§
Source§impl RemoveXhrBreakpoint
impl RemoveXhrBreakpoint
pub fn builder() -> RemoveXhrBreakpointBuilder
Source§impl RemoveXhrBreakpoint
impl RemoveXhrBreakpoint
pub const IDENTIFIER: &'static str = "DOMDebugger.removeXHRBreakpoint"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for RemoveXhrBreakpoint
impl Clone for RemoveXhrBreakpoint
Source§fn clone(&self) -> RemoveXhrBreakpoint
fn clone(&self) -> RemoveXhrBreakpoint
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 RemoveXhrBreakpoint
impl CommandResult for RemoveXhrBreakpoint
type Result = RemoveXhrBreakpointResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for RemoveXhrBreakpoint
impl Debug for RemoveXhrBreakpoint
Source§impl<'de> Deserialize<'de> for RemoveXhrBreakpoint
impl<'de> Deserialize<'de> for RemoveXhrBreakpoint
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<RemoveXhrBreakpoint> for BrowserProtocolCommands
impl From<RemoveXhrBreakpoint> for BrowserProtocolCommands
Source§fn from(v: RemoveXhrBreakpoint) -> Self
fn from(v: RemoveXhrBreakpoint) -> Self
Converts to this type from the input type.
Source§impl From<RemoveXhrBreakpoint> for Command
impl From<RemoveXhrBreakpoint> for Command
Source§fn from(v: RemoveXhrBreakpoint) -> Self
fn from(v: RemoveXhrBreakpoint) -> Self
Converts to this type from the input type.
Source§impl From<RemoveXhrBreakpoint> for DomDebuggerCommands
impl From<RemoveXhrBreakpoint> for DomDebuggerCommands
Source§fn from(v: RemoveXhrBreakpoint) -> Self
fn from(v: RemoveXhrBreakpoint) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RemoveXhrBreakpoint
impl PartialEq for RemoveXhrBreakpoint
Source§impl Serialize for RemoveXhrBreakpoint
impl Serialize for RemoveXhrBreakpoint
Source§impl TryFrom<BrowserProtocolCommands> for RemoveXhrBreakpoint
impl TryFrom<BrowserProtocolCommands> for RemoveXhrBreakpoint
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, <RemoveXhrBreakpoint as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <RemoveXhrBreakpoint as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for RemoveXhrBreakpoint
impl TryFrom<Command> for RemoveXhrBreakpoint
Source§impl TryFrom<DomDebuggerCommands> for RemoveXhrBreakpoint
impl TryFrom<DomDebuggerCommands> for RemoveXhrBreakpoint
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, <RemoveXhrBreakpoint as TryFrom<DomDebuggerCommands>>::Error>
fn try_from( e: DomDebuggerCommands, ) -> Result<Self, <RemoveXhrBreakpoint as TryFrom<DomDebuggerCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for RemoveXhrBreakpoint
Auto Trait Implementations§
impl Freeze for RemoveXhrBreakpoint
impl RefUnwindSafe for RemoveXhrBreakpoint
impl Send for RemoveXhrBreakpoint
impl Sync for RemoveXhrBreakpoint
impl Unpin for RemoveXhrBreakpoint
impl UnsafeUnpin for RemoveXhrBreakpoint
impl UnwindSafe for RemoveXhrBreakpoint
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