pub struct GetHeapUsageParams {}Expand description
Returns the JavaScript heap usage. It is the total usage of the corresponding isolate not scoped to a particular Runtime. getHeapUsage
Implementations§
Source§impl GetHeapUsageParams
impl GetHeapUsageParams
pub const IDENTIFIER: &'static str = "Runtime.getHeapUsage"
Trait Implementations§
Source§impl Clone for GetHeapUsageParams
impl Clone for GetHeapUsageParams
Source§fn clone(&self) -> GetHeapUsageParams
fn clone(&self) -> GetHeapUsageParams
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 Command for GetHeapUsageParams
impl Command for GetHeapUsageParams
Source§impl Debug for GetHeapUsageParams
impl Debug for GetHeapUsageParams
Source§impl Default for GetHeapUsageParams
impl Default for GetHeapUsageParams
Source§fn default() -> GetHeapUsageParams
fn default() -> GetHeapUsageParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetHeapUsageParams
impl<'de> Deserialize<'de> for GetHeapUsageParams
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 Method for GetHeapUsageParams
impl Method for GetHeapUsageParams
Source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§impl MethodType for GetHeapUsageParams
impl MethodType for GetHeapUsageParams
Source§impl PartialEq for GetHeapUsageParams
impl PartialEq for GetHeapUsageParams
Source§impl Serialize for GetHeapUsageParams
impl Serialize for GetHeapUsageParams
impl StructuralPartialEq for GetHeapUsageParams
Auto Trait Implementations§
impl Freeze for GetHeapUsageParams
impl RefUnwindSafe for GetHeapUsageParams
impl Send for GetHeapUsageParams
impl Sync for GetHeapUsageParams
impl Unpin for GetHeapUsageParams
impl UnwindSafe for GetHeapUsageParams
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