Trait Client

Source
pub trait Client:
    HasConfig
    + Send
    + Sync
    + Containers
    + ContainersCompat
    + Exec
    + ExecCompat
    + Images
    + ImagesCompat
    + Manifests
    + Networks
    + NetworksCompat
    + Pods
    + Secrets
    + SecretsCompat
    + System
    + SystemCompat
    + Volumes
    + VolumesCompat {
Show 16 methods // Required methods fn containers(&self) -> &dyn Containers; fn containers_compat(&self) -> &dyn ContainersCompat; fn exec(&self) -> &dyn Exec; fn exec_compat(&self) -> &dyn ExecCompat; fn images(&self) -> &dyn Images; fn images_compat(&self) -> &dyn ImagesCompat; fn manifests(&self) -> &dyn Manifests; fn networks(&self) -> &dyn Networks; fn networks_compat(&self) -> &dyn NetworksCompat; fn pods(&self) -> &dyn Pods; fn secrets(&self) -> &dyn Secrets; fn secrets_compat(&self) -> &dyn SecretsCompat; fn system(&self) -> &dyn System; fn system_compat(&self) -> &dyn SystemCompat; fn volumes(&self) -> &dyn Volumes; fn volumes_compat(&self) -> &dyn VolumesCompat;
}
Available on crate feature v5 only.

Required Methods§

Source

fn containers(&self) -> &dyn Containers

Actions related to containers

Source

fn containers_compat(&self) -> &dyn ContainersCompat

Actions related to containers for the compatibility endpoints

Source

fn exec(&self) -> &dyn Exec

Actions related to exec

Source

fn exec_compat(&self) -> &dyn ExecCompat

Actions related to exec for the compatibility endpoints

Source

fn images(&self) -> &dyn Images

Actions related to images

Source

fn images_compat(&self) -> &dyn ImagesCompat

Actions related to images for the compatibility endpoints

Source

fn manifests(&self) -> &dyn Manifests

Actions related to manifests

Source

fn networks(&self) -> &dyn Networks

Actions related to networks

Source

fn networks_compat(&self) -> &dyn NetworksCompat

Actions related to networks for the compatibility endpoints

Source

fn pods(&self) -> &dyn Pods

Actions related to pods

Source

fn secrets(&self) -> &dyn Secrets

Actions related to secrets

Source

fn secrets_compat(&self) -> &dyn SecretsCompat

Actions related to secrets for the compatibility endpoints

Source

fn system(&self) -> &dyn System

Actions related to Podman engine

Source

fn system_compat(&self) -> &dyn SystemCompat

Actions related to Podman and compatibility engines

Source

fn volumes(&self) -> &dyn Volumes

Actions related to volumes

Source

fn volumes_compat(&self) -> &dyn VolumesCompat

Actions related to volumes for the compatibility endpoints

Implementors§