pub struct StopTrackingHeapObjects {
pub method: StopTrackingHeapObjectsMethod,
pub params: StopTrackingHeapObjectsParams,
}Fields§
§method: StopTrackingHeapObjectsMethod§params: StopTrackingHeapObjectsParamsImplementations§
Source§impl StopTrackingHeapObjects
impl StopTrackingHeapObjects
pub const IDENTIFIER: &'static str = "HeapProfiler.stopTrackingHeapObjects"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for StopTrackingHeapObjects
impl Clone for StopTrackingHeapObjects
Source§fn clone(&self) -> StopTrackingHeapObjects
fn clone(&self) -> StopTrackingHeapObjects
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 StopTrackingHeapObjects
impl CommandResult for StopTrackingHeapObjects
type Result = StopTrackingHeapObjectsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for StopTrackingHeapObjects
impl Debug for StopTrackingHeapObjects
Source§impl<'de> Deserialize<'de> for StopTrackingHeapObjects
impl<'de> Deserialize<'de> for StopTrackingHeapObjects
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<StopTrackingHeapObjects> for Command
impl From<StopTrackingHeapObjects> for Command
Source§fn from(v: StopTrackingHeapObjects) -> Self
fn from(v: StopTrackingHeapObjects) -> Self
Converts to this type from the input type.
Source§impl From<StopTrackingHeapObjects> for HeapProfilerCommands
impl From<StopTrackingHeapObjects> for HeapProfilerCommands
Source§fn from(v: StopTrackingHeapObjects) -> Self
fn from(v: StopTrackingHeapObjects) -> Self
Converts to this type from the input type.
Source§impl From<StopTrackingHeapObjects> for JsProtocolCommands
impl From<StopTrackingHeapObjects> for JsProtocolCommands
Source§fn from(v: StopTrackingHeapObjects) -> Self
fn from(v: StopTrackingHeapObjects) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StopTrackingHeapObjects
impl PartialEq for StopTrackingHeapObjects
Source§impl Serialize for StopTrackingHeapObjects
impl Serialize for StopTrackingHeapObjects
Source§impl TryFrom<Command> for StopTrackingHeapObjects
impl TryFrom<Command> for StopTrackingHeapObjects
Source§impl TryFrom<HeapProfilerCommands> for StopTrackingHeapObjects
impl TryFrom<HeapProfilerCommands> for StopTrackingHeapObjects
Source§type Error = HeapProfilerCommands
type Error = HeapProfilerCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: HeapProfilerCommands,
) -> Result<Self, <StopTrackingHeapObjects as TryFrom<HeapProfilerCommands>>::Error>
fn try_from( e: HeapProfilerCommands, ) -> Result<Self, <StopTrackingHeapObjects as TryFrom<HeapProfilerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for StopTrackingHeapObjects
impl TryFrom<JsProtocolCommands> for StopTrackingHeapObjects
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, <StopTrackingHeapObjects as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <StopTrackingHeapObjects as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for StopTrackingHeapObjects
Auto Trait Implementations§
impl Freeze for StopTrackingHeapObjects
impl RefUnwindSafe for StopTrackingHeapObjects
impl Send for StopTrackingHeapObjects
impl Sync for StopTrackingHeapObjects
impl Unpin for StopTrackingHeapObjects
impl UnsafeUnpin for StopTrackingHeapObjects
impl UnwindSafe for StopTrackingHeapObjects
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