pub struct LastSeenObjectId {
pub method: LastSeenObjectIdMethod,
pub params: LastSeenObjectIdParams,
}Expand description
If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. lastSeenObjectId
Fields§
§method: LastSeenObjectIdMethod§params: LastSeenObjectIdParamsImplementations§
Source§impl LastSeenObjectId
impl LastSeenObjectId
pub const IDENTIFIER: &'static str = "HeapProfiler.lastSeenObjectId"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for LastSeenObjectId
impl Clone for LastSeenObjectId
Source§fn clone(&self) -> LastSeenObjectId
fn clone(&self) -> LastSeenObjectId
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 LastSeenObjectId
impl Debug for LastSeenObjectId
Source§impl<'de> Deserialize<'de> for LastSeenObjectId
impl<'de> Deserialize<'de> for LastSeenObjectId
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<LastSeenObjectId> for Event
impl From<LastSeenObjectId> for Event
Source§fn from(v: LastSeenObjectId) -> Self
fn from(v: LastSeenObjectId) -> Self
Converts to this type from the input type.
Source§impl From<LastSeenObjectId> for HeapProfilerEvents
impl From<LastSeenObjectId> for HeapProfilerEvents
Source§fn from(v: LastSeenObjectId) -> Self
fn from(v: LastSeenObjectId) -> Self
Converts to this type from the input type.
Source§impl From<LastSeenObjectId> for JsProtocolEvents
impl From<LastSeenObjectId> for JsProtocolEvents
Source§fn from(v: LastSeenObjectId) -> Self
fn from(v: LastSeenObjectId) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LastSeenObjectId
impl PartialEq for LastSeenObjectId
Source§impl Serialize for LastSeenObjectId
impl Serialize for LastSeenObjectId
Source§impl TryFrom<Event> for LastSeenObjectId
impl TryFrom<Event> for LastSeenObjectId
Source§impl TryFrom<HeapProfilerEvents> for LastSeenObjectId
impl TryFrom<HeapProfilerEvents> for LastSeenObjectId
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, <LastSeenObjectId as TryFrom<HeapProfilerEvents>>::Error>
fn try_from( e: HeapProfilerEvents, ) -> Result<Self, <LastSeenObjectId as TryFrom<HeapProfilerEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<JsProtocolEvents> for LastSeenObjectId
impl TryFrom<JsProtocolEvents> for LastSeenObjectId
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, <LastSeenObjectId as TryFrom<JsProtocolEvents>>::Error>
fn try_from( e: JsProtocolEvents, ) -> Result<Self, <LastSeenObjectId as TryFrom<JsProtocolEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for LastSeenObjectId
Auto Trait Implementations§
impl Freeze for LastSeenObjectId
impl RefUnwindSafe for LastSeenObjectId
impl Send for LastSeenObjectId
impl Sync for LastSeenObjectId
impl Unpin for LastSeenObjectId
impl UnsafeUnpin for LastSeenObjectId
impl UnwindSafe for LastSeenObjectId
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