1use clap::Args; 2 3/// Suspend the processes within the container 4#[derive(Args, Debug)] 5pub struct Pause { 6 /// Container identifier 7 #[arg(value_parser = clap::builder::NonEmptyStringValueParser::new(), required = true)] 8 pub container_id: String, 9}