pub struct SystemApiClient<C>{ /* private fields */ }
Implementations§
Source§impl<C> SystemApiClient<C>
impl<C> SystemApiClient<C>
pub fn new(configuration: Arc<Configuration<C>>) -> SystemApiClient<C>
Trait Implementations§
Source§impl<C> SystemApi for SystemApiClient<C>
impl<C> SystemApi for SystemApiClient<C>
fn system_data_usage_libpod( &self, ) -> Pin<Box<dyn Future<Output = Result<SystemDfReport, Error>> + Send>>
fn system_events_libpod( &self, since: Option<&str>, until: Option<&str>, filters: Option<&str>, stream: Option<bool>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send>>
fn system_info_libpod( &self, ) -> Pin<Box<dyn Future<Output = Result<LibpodInfo, Error>> + Send>>
fn system_ping( &self, ) -> Pin<Box<dyn Future<Output = Result<String, Error>> + Send>>
fn system_prune_libpod( &self, ) -> Pin<Box<dyn Future<Output = Result<SystemPruneReport, Error>> + Send>>
fn system_version_libpod( &self, ) -> Pin<Box<dyn Future<Output = Result<SystemComponentVersion, Error>> + Send>>
Auto Trait Implementations§
impl<C> Freeze for SystemApiClient<C>
impl<C> !RefUnwindSafe for SystemApiClient<C>
impl<C> Send for SystemApiClient<C>
impl<C> Sync for SystemApiClient<C>
impl<C> Unpin for SystemApiClient<C>
impl<C> !UnwindSafe for SystemApiClient<C>
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