pub struct GetDomCountersForLeakDetection {
pub method: GetDomCountersForLeakDetectionMethod,
pub params: GetDomCountersForLeakDetectionParams,
}Expand description
Retruns DOM object counters after preparing renderer for leak detection. getDOMCountersForLeakDetection
Fields§
§method: GetDomCountersForLeakDetectionMethod§params: GetDomCountersForLeakDetectionParamsImplementations§
Source§impl GetDomCountersForLeakDetection
impl GetDomCountersForLeakDetection
pub fn builder() -> GetDomCountersForLeakDetectionBuilder
Source§impl GetDomCountersForLeakDetection
impl GetDomCountersForLeakDetection
pub const IDENTIFIER: &'static str = "Memory.getDOMCountersForLeakDetection"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetDomCountersForLeakDetection
impl Clone for GetDomCountersForLeakDetection
Source§fn clone(&self) -> GetDomCountersForLeakDetection
fn clone(&self) -> GetDomCountersForLeakDetection
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 GetDomCountersForLeakDetection
impl CommandResult for GetDomCountersForLeakDetection
type Result = GetDomCountersForLeakDetectionResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for GetDomCountersForLeakDetection
impl<'de> Deserialize<'de> for GetDomCountersForLeakDetection
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<GetDomCountersForLeakDetection> for BrowserProtocolCommands
impl From<GetDomCountersForLeakDetection> for BrowserProtocolCommands
Source§fn from(v: GetDomCountersForLeakDetection) -> Self
fn from(v: GetDomCountersForLeakDetection) -> Self
Converts to this type from the input type.
Source§impl From<GetDomCountersForLeakDetection> for Command
impl From<GetDomCountersForLeakDetection> for Command
Source§fn from(v: GetDomCountersForLeakDetection) -> Self
fn from(v: GetDomCountersForLeakDetection) -> Self
Converts to this type from the input type.
Source§impl From<GetDomCountersForLeakDetection> for MemoryCommands
impl From<GetDomCountersForLeakDetection> for MemoryCommands
Source§fn from(v: GetDomCountersForLeakDetection) -> Self
fn from(v: GetDomCountersForLeakDetection) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetDomCountersForLeakDetection
impl PartialEq for GetDomCountersForLeakDetection
Source§fn eq(&self, other: &GetDomCountersForLeakDetection) -> bool
fn eq(&self, other: &GetDomCountersForLeakDetection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<BrowserProtocolCommands> for GetDomCountersForLeakDetection
impl TryFrom<BrowserProtocolCommands> for GetDomCountersForLeakDetection
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, <GetDomCountersForLeakDetection as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetDomCountersForLeakDetection as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<MemoryCommands> for GetDomCountersForLeakDetection
impl TryFrom<MemoryCommands> for GetDomCountersForLeakDetection
Source§type Error = MemoryCommands
type Error = MemoryCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: MemoryCommands,
) -> Result<Self, <GetDomCountersForLeakDetection as TryFrom<MemoryCommands>>::Error>
fn try_from( e: MemoryCommands, ) -> Result<Self, <GetDomCountersForLeakDetection as TryFrom<MemoryCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetDomCountersForLeakDetection
Auto Trait Implementations§
impl Freeze for GetDomCountersForLeakDetection
impl RefUnwindSafe for GetDomCountersForLeakDetection
impl Send for GetDomCountersForLeakDetection
impl Sync for GetDomCountersForLeakDetection
impl Unpin for GetDomCountersForLeakDetection
impl UnsafeUnpin for GetDomCountersForLeakDetection
impl UnwindSafe for GetDomCountersForLeakDetection
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