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