pub struct RequestMemoryDumpCommand { /* private fields */ }Available on crate features
experimental and Tracing and IO only.Expand description
Request a global memory dump.
Implementations§
Source§impl RequestMemoryDumpCommand
impl RequestMemoryDumpCommand
pub fn new( deterministic: Option<bool>, level_of_detail: Option<MemoryDumpLevelOfDetail>, ) -> Self
Sourcepub fn deterministic(&self) -> Option<&bool>
pub fn deterministic(&self) -> Option<&bool>
Enables more deterministic results by forcing garbage collection
Sourcepub fn level_of_detail(&self) -> Option<&MemoryDumpLevelOfDetail>
pub fn level_of_detail(&self) -> Option<&MemoryDumpLevelOfDetail>
Specifies level of details in memory dump. Defaults to “detailed”.
Trait Implementations§
Source§impl Clone for RequestMemoryDumpCommand
impl Clone for RequestMemoryDumpCommand
Source§fn clone(&self) -> RequestMemoryDumpCommand
fn clone(&self) -> RequestMemoryDumpCommand
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 RequestMemoryDumpCommand
impl Command for RequestMemoryDumpCommand
Source§impl Debug for RequestMemoryDumpCommand
impl Debug for RequestMemoryDumpCommand
Source§impl<'de> Deserialize<'de> for RequestMemoryDumpCommand
impl<'de> Deserialize<'de> for RequestMemoryDumpCommand
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
Auto Trait Implementations§
impl Freeze for RequestMemoryDumpCommand
impl RefUnwindSafe for RequestMemoryDumpCommand
impl Send for RequestMemoryDumpCommand
impl Sync for RequestMemoryDumpCommand
impl Unpin for RequestMemoryDumpCommand
impl UnwindSafe for RequestMemoryDumpCommand
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