pub struct RequestMemoryDump {
pub method: RequestMemoryDumpMethod,
pub params: RequestMemoryDumpParams,
}Expand description
Request a global memory dump. requestMemoryDump
Fields§
§method: RequestMemoryDumpMethod§params: RequestMemoryDumpParamsImplementations§
Source§impl RequestMemoryDump
impl RequestMemoryDump
pub fn builder() -> RequestMemoryDumpBuilder
Source§impl RequestMemoryDump
impl RequestMemoryDump
pub const IDENTIFIER: &'static str = "Tracing.requestMemoryDump"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for RequestMemoryDump
impl Clone for RequestMemoryDump
Source§fn clone(&self) -> RequestMemoryDump
fn clone(&self) -> RequestMemoryDump
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 RequestMemoryDump
impl CommandResult for RequestMemoryDump
type Result = RequestMemoryDumpResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for RequestMemoryDump
impl Debug for RequestMemoryDump
Source§impl<'de> Deserialize<'de> for RequestMemoryDump
impl<'de> Deserialize<'de> for RequestMemoryDump
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<RequestMemoryDump> for BrowserProtocolCommands
impl From<RequestMemoryDump> for BrowserProtocolCommands
Source§fn from(v: RequestMemoryDump) -> Self
fn from(v: RequestMemoryDump) -> Self
Converts to this type from the input type.
Source§impl From<RequestMemoryDump> for Command
impl From<RequestMemoryDump> for Command
Source§fn from(v: RequestMemoryDump) -> Self
fn from(v: RequestMemoryDump) -> Self
Converts to this type from the input type.
Source§impl From<RequestMemoryDump> for TracingCommands
impl From<RequestMemoryDump> for TracingCommands
Source§fn from(v: RequestMemoryDump) -> Self
fn from(v: RequestMemoryDump) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RequestMemoryDump
impl PartialEq for RequestMemoryDump
Source§impl Serialize for RequestMemoryDump
impl Serialize for RequestMemoryDump
Source§impl TryFrom<BrowserProtocolCommands> for RequestMemoryDump
impl TryFrom<BrowserProtocolCommands> for RequestMemoryDump
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, <RequestMemoryDump as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <RequestMemoryDump as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for RequestMemoryDump
impl TryFrom<Command> for RequestMemoryDump
Source§impl TryFrom<TracingCommands> for RequestMemoryDump
impl TryFrom<TracingCommands> for RequestMemoryDump
Source§type Error = TracingCommands
type Error = TracingCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: TracingCommands,
) -> Result<Self, <RequestMemoryDump as TryFrom<TracingCommands>>::Error>
fn try_from( e: TracingCommands, ) -> Result<Self, <RequestMemoryDump as TryFrom<TracingCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for RequestMemoryDump
Auto Trait Implementations§
impl Freeze for RequestMemoryDump
impl RefUnwindSafe for RequestMemoryDump
impl Send for RequestMemoryDump
impl Sync for RequestMemoryDump
impl Unpin for RequestMemoryDump
impl UnsafeUnpin for RequestMemoryDump
impl UnwindSafe for RequestMemoryDump
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