himalaya 1.2.0

CLI to manage emails
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use clap::Parser;

/// The envelope id argument parser.
#[derive(Debug, Parser)]
pub struct EnvelopeIdArg {
    /// The envelope id.
    #[arg(value_name = "ID", required = true)]
    pub id: usize,
}

/// The envelopes ids arguments parser.
#[derive(Debug, Parser)]
pub struct EnvelopeIdsArgs {
    /// The list of envelopes ids.
    #[arg(value_name = "ID", required = true)]
    pub ids: Vec<usize>,
}