pub struct Opt {Show 20 fields
pub thread: usize,
pub output: PathBuf,
pub dir: PathBuf,
pub stat: bool,
pub list: Option<String>,
pub bin_ctags: PathBuf,
pub bin_git: PathBuf,
pub opt_ctags: Vec<String>,
pub opt_git: Vec<String>,
pub opt_git_lfs: Vec<String>,
pub verbose: bool,
pub exclude_lfs: bool,
pub include_untracked: bool,
pub include_ignored: bool,
pub include_submodule: bool,
pub validate_utf8: bool,
pub unsorted: bool,
pub exclude: Vec<String>,
pub completion: Option<String>,
pub config: bool,
}Fields§
§thread: usizeNumber of threads
output: PathBufOutput filename ( filename ‘-’ means output to stdout )
dir: PathBufSearch directory
stat: boolShow statistics
list: Option<String>Filename of input file list
Path to ctags binary
bin_git: PathBufPath to git binary
Options passed to ctags
opt_git: Vec<String>Options passed to git
opt_git_lfs: Vec<String>Options passed to git-lfs
verbose: boolVerbose mode
exclude_lfs: boolExclude git-lfs tracked files
include_untracked: boolInclude untracked files
include_ignored: boolInclude ignored files
include_submodule: boolInclude submodule files
validate_utf8: boolValidate UTF8 sequence of tag file
unsorted: boolDisable tags sort
exclude: Vec<String>Glob pattern of exclude file ( ex. –exclude ‘*.rs’ )
completion: Option<String>Generate shell completion file
config: boolGenerate configuration sample file
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Opt
impl<'de> Deserialize<'de> for Opt
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl StructOpt for Opt
impl StructOpt for Opt
Source§fn from_clap(matches: &ArgMatches<'_>) -> Self
fn from_clap(matches: &ArgMatches<'_>) -> Self
Builds the struct from
clap::ArgMatches. It’s guaranteed to succeed
if matches originates from an App generated by StructOpt::clap called on
the same type, otherwise it must panic.Source§fn from_args() -> Selfwhere
Self: Sized,
fn from_args() -> Selfwhere
Self: Sized,
Builds the struct from the command line arguments (
std::env::args_os).
Calls clap::Error::exit on failure, printing the error message and aborting the program.Source§fn from_args_safe() -> Result<Self, Error>where
Self: Sized,
fn from_args_safe() -> Result<Self, Error>where
Self: Sized,
Builds the struct from the command line arguments (
std::env::args_os).
Unlike StructOpt::from_args, returns clap::Error on failure instead of aborting the program,
so calling .exit is up to you.Source§fn from_iter<I>(iter: I) -> Self
fn from_iter<I>(iter: I) -> Self
Gets the struct from any iterator such as a
Vec of your making.
Print the error message and quit the program in case of failure. Read moreSource§impl StructOptToml for Opt
impl StructOptToml for Opt
Source§fn merge<'a>(from_toml: Self, from_args: Self, args: &ArgMatches<'_>) -> Self
fn merge<'a>(from_toml: Self, from_args: Self, args: &ArgMatches<'_>) -> Self
Merge the struct from TOML and the struct from args
Source§fn from_clap_with_toml<'a>(
toml_str: &'a str,
args: &ArgMatches<'_>,
) -> Result<Self, Error>
fn from_clap_with_toml<'a>( toml_str: &'a str, args: &ArgMatches<'_>, ) -> Result<Self, Error>
Creates the struct from
clap::ArgMatches with initial values from TOML.Source§fn from_args_with_toml<'a>(toml_str: &'a str) -> Result<Self, Error>
fn from_args_with_toml<'a>(toml_str: &'a str) -> Result<Self, Error>
Creates the struct from command line arguments with initial values from TOML.
Source§fn from_iter_with_toml<'a, I>(toml_str: &'a str, iter: I) -> Result<Self, Error>where
Self: Sized + StructOpt + Deserialize<'a>,
I: IntoIterator,
<I as IntoIterator>::Item: Into<OsString> + Clone,
fn from_iter_with_toml<'a, I>(toml_str: &'a str, iter: I) -> Result<Self, Error>where
Self: Sized + StructOpt + Deserialize<'a>,
I: IntoIterator,
<I as IntoIterator>::Item: Into<OsString> + Clone,
Creates the struct from iterator with initial values from TOML.
Auto Trait Implementations§
impl Freeze for Opt
impl RefUnwindSafe for Opt
impl Send for Opt
impl Sync for Opt
impl Unpin for Opt
impl UnwindSafe for Opt
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more