pub struct SetInstrumentationBreakpointParams<'a> { /* private fields */ }Expand description
Sets instrumentation breakpoint.
Implementations§
Source§impl<'a> SetInstrumentationBreakpointParams<'a>
impl<'a> SetInstrumentationBreakpointParams<'a>
Sourcepub fn builder(
instrumentation: impl Into<Cow<'a, str>>,
) -> SetInstrumentationBreakpointParamsBuilder<'a>
pub fn builder( instrumentation: impl Into<Cow<'a, str>>, ) -> SetInstrumentationBreakpointParamsBuilder<'a>
Creates a builder for this type with the required parameters:
instrumentation: Instrumentation name.
Sourcepub fn instrumentation(&self) -> &str
pub fn instrumentation(&self) -> &str
Instrumentation name.
Trait Implementations§
Source§impl<'a> CdpCommand<'a> for SetInstrumentationBreakpointParams<'a>
impl<'a> CdpCommand<'a> for SetInstrumentationBreakpointParams<'a>
Source§impl<'a> Clone for SetInstrumentationBreakpointParams<'a>
impl<'a> Clone for SetInstrumentationBreakpointParams<'a>
Source§fn clone(&self) -> SetInstrumentationBreakpointParams<'a>
fn clone(&self) -> SetInstrumentationBreakpointParams<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for SetInstrumentationBreakpointParams<'a>
impl<'a> Debug for SetInstrumentationBreakpointParams<'a>
Source§impl<'a> Default for SetInstrumentationBreakpointParams<'a>
impl<'a> Default for SetInstrumentationBreakpointParams<'a>
Source§fn default() -> SetInstrumentationBreakpointParams<'a>
fn default() -> SetInstrumentationBreakpointParams<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for SetInstrumentationBreakpointParams<'a>
impl<'de, 'a> Deserialize<'de> for SetInstrumentationBreakpointParams<'a>
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
Auto Trait Implementations§
impl<'a> Freeze for SetInstrumentationBreakpointParams<'a>
impl<'a> RefUnwindSafe for SetInstrumentationBreakpointParams<'a>
impl<'a> Send for SetInstrumentationBreakpointParams<'a>
impl<'a> Sync for SetInstrumentationBreakpointParams<'a>
impl<'a> Unpin for SetInstrumentationBreakpointParams<'a>
impl<'a> UnsafeUnpin for SetInstrumentationBreakpointParams<'a>
impl<'a> UnwindSafe for SetInstrumentationBreakpointParams<'a>
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