1use clap::Parser; 2 3/// List created containers 4#[derive(Parser, Debug)] 5pub struct List { 6 /// Specify the format (default or table) 7 #[clap(long, default_value = "table")] 8 pub format: String, 9 10 /// Only display container IDs 11 #[clap(long, short)] 12 pub quiet: bool, 13}