himalaya 0.5.7

Command-line interface for email management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This module provides arguments related to the user account config.

use clap::Arg;

/// Represents the user account name argument.
/// This argument allows the user to select a different account than the default one.
pub fn name_arg<'a>() -> Arg<'a, 'a> {
    Arg::with_name("account")
        .long("account")
        .short("a")
        .help("Selects a specific account")
        .value_name("NAME")
}