pub enum EventBreakpointsCommands {
SetInstrumentationBreakpoint(SetInstrumentationBreakpoint),
RemoveInstrumentationBreakpoint(RemoveInstrumentationBreakpoint),
Disable(Disable),
}Variants§
SetInstrumentationBreakpoint(SetInstrumentationBreakpoint)
RemoveInstrumentationBreakpoint(RemoveInstrumentationBreakpoint)
Disable(Disable)
Implementations§
Source§impl EventBreakpointsCommands
impl EventBreakpointsCommands
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for EventBreakpointsCommands
impl Clone for EventBreakpointsCommands
Source§fn clone(&self) -> EventBreakpointsCommands
fn clone(&self) -> EventBreakpointsCommands
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 Debug for EventBreakpointsCommands
impl Debug for EventBreakpointsCommands
Source§impl<'de> Deserialize<'de> for EventBreakpointsCommands
impl<'de> Deserialize<'de> for EventBreakpointsCommands
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<Disable> for EventBreakpointsCommands
impl From<Disable> for EventBreakpointsCommands
Source§impl From<EventBreakpointsCommands> for BrowserProtocolCommands
impl From<EventBreakpointsCommands> for BrowserProtocolCommands
Source§fn from(v: EventBreakpointsCommands) -> Self
fn from(v: EventBreakpointsCommands) -> Self
Converts to this type from the input type.
Source§impl From<EventBreakpointsCommands> for Command
impl From<EventBreakpointsCommands> for Command
Source§fn from(v: EventBreakpointsCommands) -> Self
fn from(v: EventBreakpointsCommands) -> Self
Converts to this type from the input type.
Source§impl From<RemoveInstrumentationBreakpoint> for EventBreakpointsCommands
impl From<RemoveInstrumentationBreakpoint> for EventBreakpointsCommands
Source§fn from(v: RemoveInstrumentationBreakpoint) -> Self
fn from(v: RemoveInstrumentationBreakpoint) -> Self
Converts to this type from the input type.
Source§impl From<SetInstrumentationBreakpoint> for EventBreakpointsCommands
impl From<SetInstrumentationBreakpoint> for EventBreakpointsCommands
Source§fn from(v: SetInstrumentationBreakpoint) -> Self
fn from(v: SetInstrumentationBreakpoint) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EventBreakpointsCommands
impl PartialEq for EventBreakpointsCommands
Source§impl Serialize for EventBreakpointsCommands
impl Serialize for EventBreakpointsCommands
Source§impl TryFrom<BrowserProtocolCommands> for EventBreakpointsCommands
impl TryFrom<BrowserProtocolCommands> for EventBreakpointsCommands
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, <EventBreakpointsCommands as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <EventBreakpointsCommands as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for EventBreakpointsCommands
impl TryFrom<Command> for EventBreakpointsCommands
Source§impl TryFrom<EventBreakpointsCommands> for Disable
impl TryFrom<EventBreakpointsCommands> for Disable
Source§type Error = EventBreakpointsCommands
type Error = EventBreakpointsCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: EventBreakpointsCommands,
) -> Result<Self, <Disable as TryFrom<EventBreakpointsCommands>>::Error>
fn try_from( e: EventBreakpointsCommands, ) -> Result<Self, <Disable as TryFrom<EventBreakpointsCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<EventBreakpointsCommands> for RemoveInstrumentationBreakpoint
impl TryFrom<EventBreakpointsCommands> for RemoveInstrumentationBreakpoint
Source§type Error = EventBreakpointsCommands
type Error = EventBreakpointsCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: EventBreakpointsCommands,
) -> Result<Self, <RemoveInstrumentationBreakpoint as TryFrom<EventBreakpointsCommands>>::Error>
fn try_from( e: EventBreakpointsCommands, ) -> Result<Self, <RemoveInstrumentationBreakpoint as TryFrom<EventBreakpointsCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<EventBreakpointsCommands> for SetInstrumentationBreakpoint
impl TryFrom<EventBreakpointsCommands> for SetInstrumentationBreakpoint
Source§type Error = EventBreakpointsCommands
type Error = EventBreakpointsCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: EventBreakpointsCommands,
) -> Result<Self, <SetInstrumentationBreakpoint as TryFrom<EventBreakpointsCommands>>::Error>
fn try_from( e: EventBreakpointsCommands, ) -> Result<Self, <SetInstrumentationBreakpoint as TryFrom<EventBreakpointsCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for EventBreakpointsCommands
Auto Trait Implementations§
impl Freeze for EventBreakpointsCommands
impl RefUnwindSafe for EventBreakpointsCommands
impl Send for EventBreakpointsCommands
impl Sync for EventBreakpointsCommands
impl Unpin for EventBreakpointsCommands
impl UnsafeUnpin for EventBreakpointsCommands
impl UnwindSafe for EventBreakpointsCommands
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