clean doc

This commit is contained in:
Clément DOUIN
2023-12-08 12:18:18 +01:00
parent fff11fbe20
commit ef3214f36f
52 changed files with 452 additions and 318 deletions
+6 -6
View File
@@ -5,24 +5,24 @@ use log::info;
use std::process;
use crate::{
account::arg::name::AccountNameFlag, backend::Backend, cache::arg::disable::DisableCacheFlag,
account::arg::name::AccountNameFlag, backend::Backend, cache::arg::disable::CacheDisableFlag,
config::TomlConfig, folder::arg::name::FolderNameArg, printer::Printer,
};
/// Delete a folder
/// Delete a folder.
///
/// All emails from a given folder are definitely deleted. The folder
/// is also deleted after execution of the command.
/// All emails from the given folder are definitely deleted. The
/// folder is also deleted after execution of the command.
#[derive(Debug, Parser)]
pub struct FolderDeleteCommand {
#[command(flatten)]
pub folder: FolderNameArg,
#[command(flatten)]
pub account: AccountNameFlag,
pub cache: CacheDisableFlag,
#[command(flatten)]
pub cache: DisableCacheFlag,
pub account: AccountNameFlag,
}
impl FolderDeleteCommand {