pub struct EventAddHeapSnapshotChunk {
pub chunk: String,
}
Fields
chunk: String
Implementations
sourceimpl EventAddHeapSnapshotChunk
impl EventAddHeapSnapshotChunk
pub const IDENTIFIER: &'static str = "HeapProfiler.addHeapSnapshotChunk"
Trait Implementations
sourceimpl Clone for EventAddHeapSnapshotChunk
impl Clone for EventAddHeapSnapshotChunk
sourcefn clone(&self) -> EventAddHeapSnapshotChunk
fn clone(&self) -> EventAddHeapSnapshotChunk
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for EventAddHeapSnapshotChunk
impl Debug for EventAddHeapSnapshotChunk
sourceimpl<'de> Deserialize<'de> for EventAddHeapSnapshotChunk
impl<'de> Deserialize<'de> for EventAddHeapSnapshotChunk
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<EventAddHeapSnapshotChunk, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<EventAddHeapSnapshotChunk, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<EventAddHeapSnapshotChunk> for CdpEvent
impl From<EventAddHeapSnapshotChunk> for CdpEvent
sourcefn from(el: EventAddHeapSnapshotChunk) -> CdpEvent
fn from(el: EventAddHeapSnapshotChunk) -> CdpEvent
Converts to this type from the input type.
sourceimpl IntoEventKind for EventAddHeapSnapshotChunk
impl IntoEventKind for EventAddHeapSnapshotChunk
sourcefn event_kind() -> EventKindwhere
EventAddHeapSnapshotChunk: 'static + Sized,
fn event_kind() -> EventKindwhere
EventAddHeapSnapshotChunk: 'static + Sized,
What kind of event this type is
sourceimpl Method for EventAddHeapSnapshotChunk
impl Method for EventAddHeapSnapshotChunk
sourcefn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNode
sourcefn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOM
sourcefn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNode
sourceimpl PartialEq<EventAddHeapSnapshotChunk> for EventAddHeapSnapshotChunk
impl PartialEq<EventAddHeapSnapshotChunk> for EventAddHeapSnapshotChunk
sourcefn eq(&self, other: &EventAddHeapSnapshotChunk) -> bool
fn eq(&self, other: &EventAddHeapSnapshotChunk) -> bool
sourceimpl Serialize for EventAddHeapSnapshotChunk
impl Serialize for EventAddHeapSnapshotChunk
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
sourceimpl TryFrom<CdpEvent> for EventAddHeapSnapshotChunk
impl TryFrom<CdpEvent> for EventAddHeapSnapshotChunk
impl StructuralPartialEq for EventAddHeapSnapshotChunk
Auto Trait Implementations
impl RefUnwindSafe for EventAddHeapSnapshotChunk
impl Send for EventAddHeapSnapshotChunk
impl Sync for EventAddHeapSnapshotChunk
impl Unpin for EventAddHeapSnapshotChunk
impl UnwindSafe for EventAddHeapSnapshotChunk
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more