pub struct RemoveBreakpoint {
pub method: RemoveBreakpointMethod,
pub params: RemoveBreakpointParams,
}Expand description
Removes JavaScript breakpoint. removeBreakpoint
Fields§
§method: RemoveBreakpointMethod§params: RemoveBreakpointParamsImplementations§
Source§impl RemoveBreakpoint
impl RemoveBreakpoint
pub fn builder() -> RemoveBreakpointBuilder
Source§impl RemoveBreakpoint
impl RemoveBreakpoint
pub const IDENTIFIER: &'static str = "Debugger.removeBreakpoint"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for RemoveBreakpoint
impl Clone for RemoveBreakpoint
Source§fn clone(&self) -> RemoveBreakpoint
fn clone(&self) -> RemoveBreakpoint
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 RemoveBreakpoint
impl CommandResult for RemoveBreakpoint
type Result = RemoveBreakpointResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for RemoveBreakpoint
impl Debug for RemoveBreakpoint
Source§impl<'de> Deserialize<'de> for RemoveBreakpoint
impl<'de> Deserialize<'de> for RemoveBreakpoint
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<RemoveBreakpoint> for Command
impl From<RemoveBreakpoint> for Command
Source§fn from(v: RemoveBreakpoint) -> Self
fn from(v: RemoveBreakpoint) -> Self
Converts to this type from the input type.
Source§impl From<RemoveBreakpoint> for DebuggerCommands
impl From<RemoveBreakpoint> for DebuggerCommands
Source§fn from(v: RemoveBreakpoint) -> Self
fn from(v: RemoveBreakpoint) -> Self
Converts to this type from the input type.
Source§impl From<RemoveBreakpoint> for JsProtocolCommands
impl From<RemoveBreakpoint> for JsProtocolCommands
Source§fn from(v: RemoveBreakpoint) -> Self
fn from(v: RemoveBreakpoint) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RemoveBreakpoint
impl PartialEq for RemoveBreakpoint
Source§impl Serialize for RemoveBreakpoint
impl Serialize for RemoveBreakpoint
Source§impl TryFrom<Command> for RemoveBreakpoint
impl TryFrom<Command> for RemoveBreakpoint
Source§impl TryFrom<DebuggerCommands> for RemoveBreakpoint
impl TryFrom<DebuggerCommands> for RemoveBreakpoint
Source§type Error = DebuggerCommands
type Error = DebuggerCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DebuggerCommands,
) -> Result<Self, <RemoveBreakpoint as TryFrom<DebuggerCommands>>::Error>
fn try_from( e: DebuggerCommands, ) -> Result<Self, <RemoveBreakpoint as TryFrom<DebuggerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for RemoveBreakpoint
impl TryFrom<JsProtocolCommands> for RemoveBreakpoint
Source§type Error = JsProtocolCommands
type Error = JsProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: JsProtocolCommands,
) -> Result<Self, <RemoveBreakpoint as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <RemoveBreakpoint as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for RemoveBreakpoint
Auto Trait Implementations§
impl Freeze for RemoveBreakpoint
impl RefUnwindSafe for RemoveBreakpoint
impl Send for RemoveBreakpoint
impl Sync for RemoveBreakpoint
impl Unpin for RemoveBreakpoint
impl UnsafeUnpin for RemoveBreakpoint
impl UnwindSafe for RemoveBreakpoint
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