pub struct GetAllTimeSamplingProfile {
pub method: GetAllTimeSamplingProfileMethod,
pub params: GetAllTimeSamplingProfileParams,
}Expand description
Retrieve native memory allocations profile collected since renderer process startup. getAllTimeSamplingProfile
Fields§
§method: GetAllTimeSamplingProfileMethod§params: GetAllTimeSamplingProfileParamsImplementations§
Source§impl GetAllTimeSamplingProfile
impl GetAllTimeSamplingProfile
pub const IDENTIFIER: &'static str = "Memory.getAllTimeSamplingProfile"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetAllTimeSamplingProfile
impl Clone for GetAllTimeSamplingProfile
Source§fn clone(&self) -> GetAllTimeSamplingProfile
fn clone(&self) -> GetAllTimeSamplingProfile
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 GetAllTimeSamplingProfile
impl CommandResult for GetAllTimeSamplingProfile
type Result = GetAllTimeSamplingProfileResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetAllTimeSamplingProfile
impl Debug for GetAllTimeSamplingProfile
Source§impl<'de> Deserialize<'de> for GetAllTimeSamplingProfile
impl<'de> Deserialize<'de> for GetAllTimeSamplingProfile
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<GetAllTimeSamplingProfile> for BrowserProtocolCommands
impl From<GetAllTimeSamplingProfile> for BrowserProtocolCommands
Source§fn from(v: GetAllTimeSamplingProfile) -> Self
fn from(v: GetAllTimeSamplingProfile) -> Self
Converts to this type from the input type.
Source§impl From<GetAllTimeSamplingProfile> for Command
impl From<GetAllTimeSamplingProfile> for Command
Source§fn from(v: GetAllTimeSamplingProfile) -> Self
fn from(v: GetAllTimeSamplingProfile) -> Self
Converts to this type from the input type.
Source§impl From<GetAllTimeSamplingProfile> for MemoryCommands
impl From<GetAllTimeSamplingProfile> for MemoryCommands
Source§fn from(v: GetAllTimeSamplingProfile) -> Self
fn from(v: GetAllTimeSamplingProfile) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BrowserProtocolCommands> for GetAllTimeSamplingProfile
impl TryFrom<BrowserProtocolCommands> for GetAllTimeSamplingProfile
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, <GetAllTimeSamplingProfile as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetAllTimeSamplingProfile as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetAllTimeSamplingProfile
impl TryFrom<Command> for GetAllTimeSamplingProfile
Source§impl TryFrom<MemoryCommands> for GetAllTimeSamplingProfile
impl TryFrom<MemoryCommands> for GetAllTimeSamplingProfile
Source§type Error = MemoryCommands
type Error = MemoryCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: MemoryCommands,
) -> Result<Self, <GetAllTimeSamplingProfile as TryFrom<MemoryCommands>>::Error>
fn try_from( e: MemoryCommands, ) -> Result<Self, <GetAllTimeSamplingProfile as TryFrom<MemoryCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetAllTimeSamplingProfile
Auto Trait Implementations§
impl Freeze for GetAllTimeSamplingProfile
impl RefUnwindSafe for GetAllTimeSamplingProfile
impl Send for GetAllTimeSamplingProfile
impl Sync for GetAllTimeSamplingProfile
impl Unpin for GetAllTimeSamplingProfile
impl UnsafeUnpin for GetAllTimeSamplingProfile
impl UnwindSafe for GetAllTimeSamplingProfile
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