pub struct StopRuleUsageTracking {
pub method: StopRuleUsageTrackingMethod,
pub params: StopRuleUsageTrackingParams,
}Expand description
Stop tracking rule usage and return the list of rules that were used since last call to
takeCoverageDelta (or since start of coverage instrumentation).
stopRuleUsageTracking
Fields§
§method: StopRuleUsageTrackingMethod§params: StopRuleUsageTrackingParamsImplementations§
Source§impl StopRuleUsageTracking
impl StopRuleUsageTracking
pub fn builder() -> StopRuleUsageTrackingBuilder
Source§impl StopRuleUsageTracking
impl StopRuleUsageTracking
pub const IDENTIFIER: &'static str = "CSS.stopRuleUsageTracking"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for StopRuleUsageTracking
impl Clone for StopRuleUsageTracking
Source§fn clone(&self) -> StopRuleUsageTracking
fn clone(&self) -> StopRuleUsageTracking
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 StopRuleUsageTracking
impl CommandResult for StopRuleUsageTracking
type Result = StopRuleUsageTrackingResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for StopRuleUsageTracking
impl Debug for StopRuleUsageTracking
Source§impl<'de> Deserialize<'de> for StopRuleUsageTracking
impl<'de> Deserialize<'de> for StopRuleUsageTracking
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<StopRuleUsageTracking> for BrowserProtocolCommands
impl From<StopRuleUsageTracking> for BrowserProtocolCommands
Source§fn from(v: StopRuleUsageTracking) -> Self
fn from(v: StopRuleUsageTracking) -> Self
Converts to this type from the input type.
Source§impl From<StopRuleUsageTracking> for Command
impl From<StopRuleUsageTracking> for Command
Source§fn from(v: StopRuleUsageTracking) -> Self
fn from(v: StopRuleUsageTracking) -> Self
Converts to this type from the input type.
Source§impl From<StopRuleUsageTracking> for CssCommands
impl From<StopRuleUsageTracking> for CssCommands
Source§fn from(v: StopRuleUsageTracking) -> Self
fn from(v: StopRuleUsageTracking) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StopRuleUsageTracking
impl PartialEq for StopRuleUsageTracking
Source§impl Serialize for StopRuleUsageTracking
impl Serialize for StopRuleUsageTracking
Source§impl TryFrom<BrowserProtocolCommands> for StopRuleUsageTracking
impl TryFrom<BrowserProtocolCommands> for StopRuleUsageTracking
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, <StopRuleUsageTracking as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <StopRuleUsageTracking as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for StopRuleUsageTracking
impl TryFrom<Command> for StopRuleUsageTracking
Source§impl TryFrom<CssCommands> for StopRuleUsageTracking
impl TryFrom<CssCommands> for StopRuleUsageTracking
Source§type Error = CssCommands
type Error = CssCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: CssCommands,
) -> Result<Self, <StopRuleUsageTracking as TryFrom<CssCommands>>::Error>
fn try_from( e: CssCommands, ) -> Result<Self, <StopRuleUsageTracking as TryFrom<CssCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for StopRuleUsageTracking
Auto Trait Implementations§
impl Freeze for StopRuleUsageTracking
impl RefUnwindSafe for StopRuleUsageTracking
impl Send for StopRuleUsageTracking
impl Sync for StopRuleUsageTracking
impl Unpin for StopRuleUsageTracking
impl UnsafeUnpin for StopRuleUsageTracking
impl UnwindSafe for StopRuleUsageTracking
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