himalaya 1.2.0

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

/// The reply to all argument parser.
#[derive(Debug, Parser)]
pub struct MessageReplyAllArg {
    /// Reply to all recipients.
    ///
    /// This argument will add all recipients for the To and Cc
    /// headers.
    #[arg(long, short = 'A')]
    pub all: bool,
}