pub struct StopPreciseCoverage {
pub method: StopPreciseCoverageMethod,
pub params: StopPreciseCoverageParams,
}Expand description
Disable precise code coverage. Disabling releases unnecessary execution count records and allows executing optimized code. stopPreciseCoverage
Fields§
§method: StopPreciseCoverageMethod§params: StopPreciseCoverageParamsImplementations§
Source§impl StopPreciseCoverage
impl StopPreciseCoverage
pub fn builder() -> StopPreciseCoverageBuilder
Source§impl StopPreciseCoverage
impl StopPreciseCoverage
pub const IDENTIFIER: &'static str = "Profiler.stopPreciseCoverage"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for StopPreciseCoverage
impl Clone for StopPreciseCoverage
Source§fn clone(&self) -> StopPreciseCoverage
fn clone(&self) -> StopPreciseCoverage
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 StopPreciseCoverage
impl CommandResult for StopPreciseCoverage
type Result = StopPreciseCoverageResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for StopPreciseCoverage
impl Debug for StopPreciseCoverage
Source§impl<'de> Deserialize<'de> for StopPreciseCoverage
impl<'de> Deserialize<'de> for StopPreciseCoverage
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<StopPreciseCoverage> for Command
impl From<StopPreciseCoverage> for Command
Source§fn from(v: StopPreciseCoverage) -> Self
fn from(v: StopPreciseCoverage) -> Self
Converts to this type from the input type.
Source§impl From<StopPreciseCoverage> for JsProtocolCommands
impl From<StopPreciseCoverage> for JsProtocolCommands
Source§fn from(v: StopPreciseCoverage) -> Self
fn from(v: StopPreciseCoverage) -> Self
Converts to this type from the input type.
Source§impl From<StopPreciseCoverage> for ProfilerCommands
impl From<StopPreciseCoverage> for ProfilerCommands
Source§fn from(v: StopPreciseCoverage) -> Self
fn from(v: StopPreciseCoverage) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StopPreciseCoverage
impl PartialEq for StopPreciseCoverage
Source§impl Serialize for StopPreciseCoverage
impl Serialize for StopPreciseCoverage
Source§impl TryFrom<Command> for StopPreciseCoverage
impl TryFrom<Command> for StopPreciseCoverage
Source§impl TryFrom<JsProtocolCommands> for StopPreciseCoverage
impl TryFrom<JsProtocolCommands> for StopPreciseCoverage
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, <StopPreciseCoverage as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <StopPreciseCoverage as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<ProfilerCommands> for StopPreciseCoverage
impl TryFrom<ProfilerCommands> for StopPreciseCoverage
Source§type Error = ProfilerCommands
type Error = ProfilerCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: ProfilerCommands,
) -> Result<Self, <StopPreciseCoverage as TryFrom<ProfilerCommands>>::Error>
fn try_from( e: ProfilerCommands, ) -> Result<Self, <StopPreciseCoverage as TryFrom<ProfilerCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for StopPreciseCoverage
Auto Trait Implementations§
impl Freeze for StopPreciseCoverage
impl RefUnwindSafe for StopPreciseCoverage
impl Send for StopPreciseCoverage
impl Sync for StopPreciseCoverage
impl Unpin for StopPreciseCoverage
impl UnsafeUnpin for StopPreciseCoverage
impl UnwindSafe for StopPreciseCoverage
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