pub struct ReportHeapSnapshotProgress {
pub method: ReportHeapSnapshotProgressMethod,
pub params: ReportHeapSnapshotProgressParams,
}Fields§
§method: ReportHeapSnapshotProgressMethod§params: ReportHeapSnapshotProgressParamsImplementations§
Source§impl ReportHeapSnapshotProgress
impl ReportHeapSnapshotProgress
pub const IDENTIFIER: &'static str = "HeapProfiler.reportHeapSnapshotProgress"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ReportHeapSnapshotProgress
impl Clone for ReportHeapSnapshotProgress
Source§fn clone(&self) -> ReportHeapSnapshotProgress
fn clone(&self) -> ReportHeapSnapshotProgress
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 Debug for ReportHeapSnapshotProgress
impl Debug for ReportHeapSnapshotProgress
Source§impl<'de> Deserialize<'de> for ReportHeapSnapshotProgress
impl<'de> Deserialize<'de> for ReportHeapSnapshotProgress
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<ReportHeapSnapshotProgress> for Event
impl From<ReportHeapSnapshotProgress> for Event
Source§fn from(v: ReportHeapSnapshotProgress) -> Self
fn from(v: ReportHeapSnapshotProgress) -> Self
Converts to this type from the input type.
Source§impl From<ReportHeapSnapshotProgress> for HeapProfilerEvents
impl From<ReportHeapSnapshotProgress> for HeapProfilerEvents
Source§fn from(v: ReportHeapSnapshotProgress) -> Self
fn from(v: ReportHeapSnapshotProgress) -> Self
Converts to this type from the input type.
Source§impl From<ReportHeapSnapshotProgress> for JsProtocolEvents
impl From<ReportHeapSnapshotProgress> for JsProtocolEvents
Source§fn from(v: ReportHeapSnapshotProgress) -> Self
fn from(v: ReportHeapSnapshotProgress) -> Self
Converts to this type from the input type.
Source§impl TryFrom<Event> for ReportHeapSnapshotProgress
impl TryFrom<Event> for ReportHeapSnapshotProgress
Source§impl TryFrom<HeapProfilerEvents> for ReportHeapSnapshotProgress
impl TryFrom<HeapProfilerEvents> for ReportHeapSnapshotProgress
Source§type Error = HeapProfilerEvents
type Error = HeapProfilerEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: HeapProfilerEvents,
) -> Result<Self, <ReportHeapSnapshotProgress as TryFrom<HeapProfilerEvents>>::Error>
fn try_from( e: HeapProfilerEvents, ) -> Result<Self, <ReportHeapSnapshotProgress as TryFrom<HeapProfilerEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolEvents> for ReportHeapSnapshotProgress
impl TryFrom<JsProtocolEvents> for ReportHeapSnapshotProgress
Source§type Error = JsProtocolEvents
type Error = JsProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: JsProtocolEvents,
) -> Result<Self, <ReportHeapSnapshotProgress as TryFrom<JsProtocolEvents>>::Error>
fn try_from( e: JsProtocolEvents, ) -> Result<Self, <ReportHeapSnapshotProgress as TryFrom<JsProtocolEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for ReportHeapSnapshotProgress
Auto Trait Implementations§
impl Freeze for ReportHeapSnapshotProgress
impl RefUnwindSafe for ReportHeapSnapshotProgress
impl Send for ReportHeapSnapshotProgress
impl Sync for ReportHeapSnapshotProgress
impl Unpin for ReportHeapSnapshotProgress
impl UnsafeUnpin for ReportHeapSnapshotProgress
impl UnwindSafe for ReportHeapSnapshotProgress
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