pub trait System:
    HasConfig
    + Send
    + Sync {
    // Provided methods
    fn system_events_libpod<'a>(
        &'a self,
        params: Option<SystemEventsLibpod<'a>>,
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'a>> { ... }
    fn system_info_libpod<'a>(
        &'a self,
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'a>> { ... }
    fn system_data_usage_libpod<'a>(
        &'a self,
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'a>> { ... }
    fn system_prune_libpod<'a>(
        &'a self,
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'a>> { ... }
    fn system_version_libpod<'a>(
        &'a self,
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'a>> { ... }
}Available on crate feature 
v4 only.Provided Methods§
Sourcefn system_events_libpod<'a>(
    &'a self,
    params: Option<SystemEventsLibpod<'a>>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'a>>
 
fn system_events_libpod<'a>( &'a self, params: Option<SystemEventsLibpod<'a>>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'a>>
GET /libpod/events
Get events
Returns events filtered on query parameters
Sourcefn system_info_libpod<'a>(
    &'a self,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'a>>
 
fn system_info_libpod<'a>( &'a self, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'a>>
GET /libpod/info
Get info
Returns information on the system and libpod configuration
Sourcefn system_data_usage_libpod<'a>(
    &'a self,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'a>>
 
fn system_data_usage_libpod<'a>( &'a self, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'a>>
GET /libpod/system/df
Show disk usage
Return information about disk usage for containers, images, and volumes