pub struct GetProcessInfoParams {}
Expand description
Returns information about all running processes. getProcessInfo
Implementations§
source§impl GetProcessInfoParams
impl GetProcessInfoParams
pub const IDENTIFIER: &'static str = "SystemInfo.getProcessInfo"
Trait Implementations§
source§impl Clone for GetProcessInfoParams
impl Clone for GetProcessInfoParams
source§fn clone(&self) -> GetProcessInfoParams
fn clone(&self) -> GetProcessInfoParams
Returns a copy 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 GetProcessInfoParams
impl Command for GetProcessInfoParams
§type Response = GetProcessInfoReturns
type Response = GetProcessInfoReturns
The type of the response this request triggers on the chromium server
source§impl Debug for GetProcessInfoParams
impl Debug for GetProcessInfoParams
source§impl Default for GetProcessInfoParams
impl Default for GetProcessInfoParams
source§fn default() -> GetProcessInfoParams
fn default() -> GetProcessInfoParams
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GetProcessInfoParams
impl<'de> Deserialize<'de> for GetProcessInfoParams
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<GetProcessInfoParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<GetProcessInfoParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for GetProcessInfoParams
impl Method for GetProcessInfoParams
source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNode
source§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOM
source§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNode
source§impl MethodType for GetProcessInfoParams
impl MethodType for GetProcessInfoParams
source§impl PartialEq<GetProcessInfoParams> for GetProcessInfoParams
impl PartialEq<GetProcessInfoParams> for GetProcessInfoParams
source§fn eq(&self, other: &GetProcessInfoParams) -> bool
fn eq(&self, other: &GetProcessInfoParams) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for GetProcessInfoParams
impl Serialize for GetProcessInfoParams
source§fn 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
impl StructuralPartialEq for GetProcessInfoParams
Auto Trait Implementations§
impl RefUnwindSafe for GetProcessInfoParams
impl Send for GetProcessInfoParams
impl Sync for GetProcessInfoParams
impl Unpin for GetProcessInfoParams
impl UnwindSafe for GetProcessInfoParams
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