pub struct GetBestEffortCoverage {
pub method: GetBestEffortCoverageMethod,
pub params: GetBestEffortCoverageParams,
}Expand description
Collect coverage data for the current isolate. The coverage data may be incomplete due to garbage collection. getBestEffortCoverage
Fields§
§method: GetBestEffortCoverageMethod§params: GetBestEffortCoverageParamsImplementations§
Source§impl GetBestEffortCoverage
impl GetBestEffortCoverage
pub fn builder() -> GetBestEffortCoverageBuilder
Source§impl GetBestEffortCoverage
impl GetBestEffortCoverage
pub const IDENTIFIER: &'static str = "Profiler.getBestEffortCoverage"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetBestEffortCoverage
impl Clone for GetBestEffortCoverage
Source§fn clone(&self) -> GetBestEffortCoverage
fn clone(&self) -> GetBestEffortCoverage
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 GetBestEffortCoverage
impl CommandResult for GetBestEffortCoverage
type Result = GetBestEffortCoverageResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetBestEffortCoverage
impl Debug for GetBestEffortCoverage
Source§impl<'de> Deserialize<'de> for GetBestEffortCoverage
impl<'de> Deserialize<'de> for GetBestEffortCoverage
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<GetBestEffortCoverage> for Command
impl From<GetBestEffortCoverage> for Command
Source§fn from(v: GetBestEffortCoverage) -> Self
fn from(v: GetBestEffortCoverage) -> Self
Converts to this type from the input type.
Source§impl From<GetBestEffortCoverage> for JsProtocolCommands
impl From<GetBestEffortCoverage> for JsProtocolCommands
Source§fn from(v: GetBestEffortCoverage) -> Self
fn from(v: GetBestEffortCoverage) -> Self
Converts to this type from the input type.
Source§impl From<GetBestEffortCoverage> for ProfilerCommands
impl From<GetBestEffortCoverage> for ProfilerCommands
Source§fn from(v: GetBestEffortCoverage) -> Self
fn from(v: GetBestEffortCoverage) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetBestEffortCoverage
impl PartialEq for GetBestEffortCoverage
Source§impl Serialize for GetBestEffortCoverage
impl Serialize for GetBestEffortCoverage
Source§impl TryFrom<Command> for GetBestEffortCoverage
impl TryFrom<Command> for GetBestEffortCoverage
Source§impl TryFrom<JsProtocolCommands> for GetBestEffortCoverage
impl TryFrom<JsProtocolCommands> for GetBestEffortCoverage
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, <GetBestEffortCoverage as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <GetBestEffortCoverage as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<ProfilerCommands> for GetBestEffortCoverage
impl TryFrom<ProfilerCommands> for GetBestEffortCoverage
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, <GetBestEffortCoverage as TryFrom<ProfilerCommands>>::Error>
fn try_from( e: ProfilerCommands, ) -> Result<Self, <GetBestEffortCoverage as TryFrom<ProfilerCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetBestEffortCoverage
Auto Trait Implementations§
impl Freeze for GetBestEffortCoverage
impl RefUnwindSafe for GetBestEffortCoverage
impl Send for GetBestEffortCoverage
impl Sync for GetBestEffortCoverage
impl Unpin for GetBestEffortCoverage
impl UnsafeUnpin for GetBestEffortCoverage
impl UnwindSafe for GetBestEffortCoverage
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