Trait podman_rest_client::v4::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 v4 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§