pub struct SystemInfoClient { /* private fields */ }Expand description
Client for SystemInfo domain commands.
Implementations§
Source§impl SystemInfoClient
impl SystemInfoClient
Sourcepub async fn get_info(
&self,
session_id: Option<&str>,
) -> Result<GetInfoReturns, CdpError>
pub async fn get_info( &self, session_id: Option<&str>, ) -> Result<GetInfoReturns, CdpError>
Returns information about the system.
Sourcepub async fn get_feature_state(
&self,
params: GetFeatureStateParams,
session_id: Option<&str>,
) -> Result<GetFeatureStateReturns, CdpError>
pub async fn get_feature_state( &self, params: GetFeatureStateParams, session_id: Option<&str>, ) -> Result<GetFeatureStateReturns, CdpError>
Returns information about the feature state.
Sourcepub async fn get_process_info(
&self,
session_id: Option<&str>,
) -> Result<GetProcessInfoReturns, CdpError>
pub async fn get_process_info( &self, session_id: Option<&str>, ) -> Result<GetProcessInfoReturns, CdpError>
Returns information about all running processes.
Auto Trait Implementations§
impl Freeze for SystemInfoClient
impl !RefUnwindSafe for SystemInfoClient
impl Send for SystemInfoClient
impl Sync for SystemInfoClient
impl Unpin for SystemInfoClient
impl UnsafeUnpin for SystemInfoClient
impl !UnwindSafe for SystemInfoClient
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