liboci-cli 0.7.0

Parse command line arguments for OCI container runtimes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use clap::Args;

/// List created containers
#[derive(Args, Debug)]
pub struct List {
    /// Specify the format (default or table)
    #[arg(long, default_value = "table")]
    pub format: String,

    /// Only display container IDs
    #[arg(long, short)]
    pub quiet: bool,
}