liboci-cli 0.7.0

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

/// Resume the processes within the container
#[derive(Args, Debug)]
pub struct Resume {
    /// Container identifier
    #[arg(value_parser = clap::builder::NonEmptyStringValueParser::new(), required = true)]
    pub container_id: String,
}