usestd::path::PathBuf;/// Fuse layer exposing Crypt4GH-encrypted files, as if they were decrypted.
#[derive(clap::Parser)]#[clap(about, version, author)]pubstructArgs{/// Display debug information
#[clap(short, long)]pubverbose:bool,
/// Path to the config file
#[clap(short, long)]pubconf: PathBuf,
/// Path to the mountpoint
#[clap()]pubmountpoint: PathBuf,
}