Lines Matching refs:Arg

1 use crate::options::parser::{Arg, Args, TakesValue, Values};
5 pub static VERSION: Arg = Arg { short: Some(b'v'), long: "version", takes_value: TakesValue::Forbi…
6 pub static HELP: Arg = Arg { short: Some(b'?'), long: "help", takes_value: TakesValue::Forbi…
9 pub static ONE_LINE: Arg = Arg { short: Some(b'1'), long: "oneline", takes_value: TakesValue::Forb…
10 pub static LONG: Arg = Arg { short: Some(b'l'), long: "long", takes_value: TakesValue::Forb…
11 pub static GRID: Arg = Arg { short: Some(b'G'), long: "grid", takes_value: TakesValue::Forb…
12 pub static ACROSS: Arg = Arg { short: Some(b'x'), long: "across", takes_value: TakesValue::Forb…
13 pub static RECURSE: Arg = Arg { short: Some(b'R'), long: "recurse", takes_value: TakesValue::Forb…
14 pub static TREE: Arg = Arg { short: Some(b'T'), long: "tree", takes_value: TakesValue::Forb…
15 pub static CLASSIFY: Arg = Arg { short: Some(b'F'), long: "classify", takes_value: TakesValue::Forb…
17 pub static COLOR: Arg = Arg { short: None, long: "color", takes_value: TakesValue::Necessary(Some…
18 pub static COLOUR: Arg = Arg { short: None, long: "colour", takes_value: TakesValue::Necessary(Some…
21 pub static COLOR_SCALE: Arg = Arg { short: None, long: "color-scale", takes_value: TakesValue::Fo…
22 pub static COLOUR_SCALE: Arg = Arg { short: None, long: "colour-scale", takes_value: TakesValue::Fo…
25 pub static ALL: Arg = Arg { short: Some(b'a'), long: "all", takes_value: TakesValue…
26 pub static LIST_DIRS: Arg = Arg { short: Some(b'd'), long: "list-dirs", takes_value: TakesValue…
27 pub static LEVEL: Arg = Arg { short: Some(b'L'), long: "level", takes_value: TakesValue…
28 pub static REVERSE: Arg = Arg { short: Some(b'r'), long: "reverse", takes_value: TakesValue…
29 pub static SORT: Arg = Arg { short: Some(b's'), long: "sort", takes_value: TakesValue…
30 pub static IGNORE_GLOB: Arg = Arg { short: Some(b'I'), long: "ignore-glob", takes_value: TakesValue…
31 pub static GIT_IGNORE: Arg = Arg { short: None, long: "git-ignore", takes_value: TakesVa…
32 pub static DIRS_FIRST: Arg = Arg { short: None, long: "group-directories-first", takes_value: Tak…
33 pub static ONLY_DIRS: Arg = Arg { short: Some(b'D'), long: "only-dirs", takes_value: TakesValue::…
39 pub static BINARY: Arg = Arg { short: Some(b'b'), long: "binary", takes_value: TakesValue::…
40 pub static BYTES: Arg = Arg { short: Some(b'B'), long: "bytes", takes_value: TakesValue::…
41 pub static GROUP: Arg = Arg { short: Some(b'g'), long: "group", takes_value: TakesValue::…
42 pub static NUMERIC: Arg = Arg { short: Some(b'n'), long: "numeric", takes_value: TakesValue::…
43 pub static HEADER: Arg = Arg { short: Some(b'h'), long: "header", takes_value: TakesValue::…
44 pub static ICONS: Arg = Arg { short: None, long: "icons", takes_value: TakesValue::…
45 pub static INODE: Arg = Arg { short: Some(b'i'), long: "inode", takes_value: TakesValue::…
46 pub static LINKS: Arg = Arg { short: Some(b'H'), long: "links", takes_value: TakesValue::…
47 pub static MODIFIED: Arg = Arg { short: Some(b'm'), long: "modified", takes_value: TakesValue::…
48 pub static CHANGED: Arg = Arg { short: None, long: "changed", takes_value: TakesValue::…
49 pub static BLOCKS: Arg = Arg { short: Some(b'S'), long: "blocks", takes_value: TakesValue::…
50 pub static TIME: Arg = Arg { short: Some(b't'), long: "time", takes_value: TakesValue::…
51 pub static ACCESSED: Arg = Arg { short: Some(b'u'), long: "accessed", takes_value: TakesValue::…
52 pub static CREATED: Arg = Arg { short: Some(b'U'), long: "created", takes_value: TakesValue::…
53 pub static TIME_STYLE: Arg = Arg { short: None, long: "time-style", takes_value: TakesValue::…
58 pub static NO_PERMISSIONS: Arg = Arg { short: None, long: "no-permissions", takes_value: TakesValue…
59 pub static NO_FILESIZE: Arg = Arg { short: None, long: "no-filesize", takes_value: TakesValue::Forb…
60 pub static NO_USER: Arg = Arg { short: None, long: "no-user", takes_value: TakesValue::Forbidden };
61 pub static NO_TIME: Arg = Arg { short: None, long: "no-time", takes_value: TakesValue::Forbidden };
62 pub static NO_ICONS: Arg = Arg { short: None, long: "no-icons", takes_value: TakesValue::Forbidden …
65 pub static GIT: Arg = Arg { short: None, long: "git", takes_value: TakesV…
66 pub static EXTENDED: Arg = Arg { short: Some(b'@'), long: "extended", takes_value: TakesV…
67 pub static OCTAL: Arg = Arg { short: None, long: "octal-permissions", takes_value: TakesV…