pub struct AddInspectedHeapObject {
pub method: AddInspectedHeapObjectMethod,
pub params: AddInspectedHeapObjectParams,
}Expand description
Enables console to refer to the node with given id via $x (see Command Line API for more details $x functions). addInspectedHeapObject
Fields§
§method: AddInspectedHeapObjectMethod§params: AddInspectedHeapObjectParamsImplementations§
Source§impl AddInspectedHeapObject
impl AddInspectedHeapObject
pub fn builder() -> AddInspectedHeapObjectBuilder
Source§impl AddInspectedHeapObject
impl AddInspectedHeapObject
pub const IDENTIFIER: &'static str = "HeapProfiler.addInspectedHeapObject"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for AddInspectedHeapObject
impl Clone for AddInspectedHeapObject
Source§fn clone(&self) -> AddInspectedHeapObject
fn clone(&self) -> AddInspectedHeapObject
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 AddInspectedHeapObject
impl CommandResult for AddInspectedHeapObject
type Result = AddInspectedHeapObjectResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for AddInspectedHeapObject
impl Debug for AddInspectedHeapObject
Source§impl<'de> Deserialize<'de> for AddInspectedHeapObject
impl<'de> Deserialize<'de> for AddInspectedHeapObject
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<AddInspectedHeapObject> for Command
impl From<AddInspectedHeapObject> for Command
Source§fn from(v: AddInspectedHeapObject) -> Self
fn from(v: AddInspectedHeapObject) -> Self
Converts to this type from the input type.
Source§impl From<AddInspectedHeapObject> for HeapProfilerCommands
impl From<AddInspectedHeapObject> for HeapProfilerCommands
Source§fn from(v: AddInspectedHeapObject) -> Self
fn from(v: AddInspectedHeapObject) -> Self
Converts to this type from the input type.
Source§impl From<AddInspectedHeapObject> for JsProtocolCommands
impl From<AddInspectedHeapObject> for JsProtocolCommands
Source§fn from(v: AddInspectedHeapObject) -> Self
fn from(v: AddInspectedHeapObject) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AddInspectedHeapObject
impl PartialEq for AddInspectedHeapObject
Source§impl Serialize for AddInspectedHeapObject
impl Serialize for AddInspectedHeapObject
Source§impl TryFrom<Command> for AddInspectedHeapObject
impl TryFrom<Command> for AddInspectedHeapObject
Source§impl TryFrom<HeapProfilerCommands> for AddInspectedHeapObject
impl TryFrom<HeapProfilerCommands> for AddInspectedHeapObject
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, <AddInspectedHeapObject as TryFrom<HeapProfilerCommands>>::Error>
fn try_from( e: HeapProfilerCommands, ) -> Result<Self, <AddInspectedHeapObject as TryFrom<HeapProfilerCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolCommands> for AddInspectedHeapObject
impl TryFrom<JsProtocolCommands> for AddInspectedHeapObject
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, <AddInspectedHeapObject as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <AddInspectedHeapObject as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for AddInspectedHeapObject
Auto Trait Implementations§
impl Freeze for AddInspectedHeapObject
impl RefUnwindSafe for AddInspectedHeapObject
impl Send for AddInspectedHeapObject
impl Sync for AddInspectedHeapObject
impl Unpin for AddInspectedHeapObject
impl UnsafeUnpin for AddInspectedHeapObject
impl UnwindSafe for AddInspectedHeapObject
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