pub fn uu_app() -> Commanddiff --git a/dev/src/uu_chmod/chmod.rs.html b/dev/src/uu_chmod/chmod.rs.html index b9e5836e8..f8ae64751 100644 --- a/dev/src/uu_chmod/chmod.rs.html +++ b/dev/src/uu_chmod/chmod.rs.html @@ -375,11 +375,6 @@ 375 376 377 -378 -379 -380 -381 -382
// This file is part of the uutils coreutils package.
//
// (c) Alex Lyon <arcterus@mail.com>
@@ -401,8 +396,14 @@
use uucore::mode;
use uucore::{format_usage, show_error};
-static ABOUT: &str = "Change the mode of each FILE to MODE.
- With --reference, change the mode of each FILE to that of RFILE.";
+const ABOUT: &str = "Change the mode of each FILE to MODE.\n\
+ With --reference, change the mode of each FILE to that of RFILE.";
+const USAGE: &str = "\
+ {} [OPTION]... MODE[,MODE]... FILE...
+ {} [OPTION]... OCTAL-MODE FILE...
+ {} [OPTION]... --reference=RFILE FILE...";
+const LONG_USAGE: &str =
+ "Each MODE is of the form '[ugoa]*([-+=]([rwxXst]*|[ugo]))+|[-+=]?[0-7]+'.";
mod options {
pub const CHANGES: &str = "changes";
@@ -416,15 +417,6 @@
pub const FILE: &str = "FILE";
}
-const USAGE: &str = "\
- {} [OPTION]... MODE[,MODE]... FILE...
- {} [OPTION]... OCTAL-MODE FILE...
- {} [OPTION]... --reference=RFILE FILE...";
-
-fn get_long_usage() -> &'static str {
- "Each MODE is of the form '[ugoa]*([-+=]([rwxXst]*|[ugo]))+|[-+=]?[0-7]+'."
-}
-
#[uucore::main]
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
let mut args = args.collect_lossy();
@@ -433,9 +425,7 @@
// a possible MODE prefix '-' needs to be removed (e.g. "chmod -x FILE").
let mode_had_minus_prefix = mode::strip_minus_from_mode(&mut args);
- let after_help = get_long_usage();
-
- let matches = uu_app().after_help(after_help).try_get_matches_from(args)?;
+ let matches = uu_app().after_help(LONG_USAGE).try_get_matches_from(args)?;
let changes = matches.get_flag(options::CHANGES);
let quiet = matches.get_flag(options::QUIET);
diff --git a/dev/src/uu_dirname/dirname.rs.html b/dev/src/uu_dirname/dirname.rs.html
index bc19c59b0..e65e2fe33 100644
--- a/dev/src/uu_dirname/dirname.rs.html
+++ b/dev/src/uu_dirname/dirname.rs.html
@@ -88,10 +88,6 @@
88
89
90
-91
-92
-93
-94
// This file is part of the uutils coreutils package.
//
// (c) Derek Chiang <derekchiang93@gmail.com>
@@ -105,26 +101,22 @@
use uucore::error::{UResult, UUsageError};
use uucore::format_usage;
-static ABOUT: &str = "Strip last component from file name";
+const ABOUT: &str = "Strip last component from file name";
const USAGE: &str = "{} [OPTION] NAME...";
+const LONG_USAGE: &str = "\
+ Output each NAME with its last non-slash component and trailing slashes \n\
+ removed; if NAME contains no /'s, output '.' (meaning the current directory).";
mod options {
pub const ZERO: &str = "zero";
pub const DIR: &str = "dir";
}
-fn get_long_usage() -> &'static str {
- "Output each NAME with its last non-slash component and trailing slashes \n\
- removed; if NAME contains no /'s, output '.' (meaning the current directory)."
-}
-
#[uucore::main]
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
let args = args.collect_lossy();
- let matches = uu_app()
- .after_help(get_long_usage())
- .try_get_matches_from(args)?;
+ let matches = uu_app().after_help(LONG_USAGE).try_get_matches_from(args)?;
let separator = if matches.get_flag(options::ZERO) {
"\0"
diff --git a/dev/src/uu_mkdir/mkdir.rs.html b/dev/src/uu_mkdir/mkdir.rs.html
index 51528ffd9..ea52885e9 100644
--- a/dev/src/uu_mkdir/mkdir.rs.html
+++ b/dev/src/uu_mkdir/mkdir.rs.html
@@ -214,10 +214,6 @@
214
215
216
-217
-218
-219
-220
// * This file is part of the uutils coreutils package.
// *
// * (c) Nicholas Juszczak <juszczakn@gmail.com>
@@ -242,8 +238,10 @@
static DEFAULT_PERM: u32 = 0o755;
-static ABOUT: &str = "Create the given DIRECTORY(ies) if they do not exist";
+const ABOUT: &str = "Create the given DIRECTORY(ies) if they do not exist";
const USAGE: &str = "{} [OPTION]... [USER]";
+const LONG_USAGE: &str =
+ "Each MODE is of the form '[ugoa]*([-+=]([rwxXst]*|[ugo]))+|[-+=]?[0-7]+'.";
mod options {
pub const MODE: &str = "mode";
@@ -252,10 +250,6 @@
pub const DIRS: &str = "dirs";
}
-fn get_long_usage() -> &'static str {
- "Each MODE is of the form '[ugoa]*([-+=]([rwxXst]*|[ugo]))+|[-+=]?[0-7]+'."
-}
-
#[cfg(windows)]
fn get_mode(_matches: &ArgMatches, _mode_had_minus_prefix: bool) -> Result<u32, String> {
Ok(DEFAULT_PERM)
@@ -312,9 +306,7 @@
// Linux-specific options, not implemented
// opts.optflag("Z", "context", "set SELinux security context" +
// " of each created directory to CTX"),
- let matches = uu_app()
- .after_help(get_long_usage())
- .try_get_matches_from(args)?;
+ let matches = uu_app().after_help(LONG_USAGE).try_get_matches_from(args)?;
let dirs = matches
.get_many::<OsString>(options::DIRS)
diff --git a/dev/src/uu_rm/rm.rs.html b/dev/src/uu_rm/rm.rs.html
index 543a51280..c97b7e309 100644
--- a/dev/src/uu_rm/rm.rs.html
+++ b/dev/src/uu_rm/rm.rs.html
@@ -574,11 +574,6 @@
574
575
576
-577
-578
-579
-580
-581
// * This file is part of the uutils coreutils package.
// *
// * (c) Alex Lyon <arcterus@mail.com>
@@ -618,8 +613,22 @@
verbose: bool,
}
-static ABOUT: &str = "Remove (unlink) the FILE(s)";
+const ABOUT: &str = "Remove (unlink) the FILE(s)";
const USAGE: &str = "{} [OPTION]... FILE...";
+const LONG_USAGE: &str = "\
+By default, rm does not remove directories. Use the --recursive (-r or -R)
+option to remove each listed directory, too, along with all of its contents
+
+To remove a file whose name starts with a '-', for example '-foo',
+use one of these commands:
+rm -- -foo
+
+rm ./-foo
+
+Note that if you use rm to remove a file, it might be possible to recover
+some of its contents, given sufficient expertise and/or time. For greater
+assurance that the contents are truly unrecoverable, consider using shred.";
+
static OPT_DIR: &str = "dir";
static OPT_INTERACTIVE: &str = "interactive";
static OPT_FORCE: &str = "force";
@@ -634,28 +643,9 @@
static ARG_FILES: &str = "files";
-fn get_long_usage() -> String {
- String::from(
- "By default, rm does not remove directories. Use the --recursive (-r or -R)
- option to remove each listed directory, too, along with all of its contents
-
- To remove a file whose name starts with a '-', for example '-foo',
- use one of these commands:
- rm -- -foo
-
- rm ./-foo
-
- Note that if you use rm to remove a file, it might be possible to recover
- some of its contents, given sufficient expertise and/or time. For greater
- assurance that the contents are truly unrecoverable, consider using shred.",
- )
-}
-
#[uucore::main]
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
- let matches = uu_app()
- .after_help(get_long_usage())
- .try_get_matches_from(args)?;
+ let matches = uu_app().after_help(LONG_USAGE).try_get_matches_from(args)?;
let files: Vec<String> = matches
.get_many::<String>(ARG_FILES)
diff --git a/dev/src/uu_stat/stat.rs.html b/dev/src/uu_stat/stat.rs.html
index 876390510..4962326af 100644
--- a/dev/src/uu_stat/stat.rs.html
+++ b/dev/src/uu_stat/stat.rs.html
@@ -931,63 +931,6 @@
931
932
933
-934
-935
-936
-937
-938
-939
-940
-941
-942
-943
-944
-945
-946
-947
-948
-949
-950
-951
-952
-953
-954
-955
-956
-957
-958
-959
-960
-961
-962
-963
-964
-965
-966
-967
-968
-969
-970
-971
-972
-973
-974
-975
-976
-977
-978
-979
-980
-981
-982
-983
-984
-985
-986
-987
-988
-989
-990
// This file is part of the uutils coreutils package.
//
// (c) Jian Zeng <anonymousknight96@gmail.com>
@@ -1003,7 +946,7 @@
pretty_filetype, pretty_fstype, pretty_time, read_fs_list, statfs, BirthTime, FsMeta,
};
use uucore::libc::mode_t;
-use uucore::{entries, format_usage, show_error, show_warning};
+use uucore::{entries, format_usage, help_section, help_usage, show_error, show_warning};
use clap::{crate_version, Arg, ArgAction, ArgMatches, Command};
use std::borrow::Cow;
@@ -1014,8 +957,9 @@
use std::os::unix::prelude::OsStrExt;
use std::path::Path;
-const ABOUT: &str = "Display file or file system status.";
-const USAGE: &str = "{} [OPTION]... FILE...";
+const ABOUT: &str = help_section!("about", "stat.md");
+const USAGE: &str = help_usage!("stat.md");
+const LONG_USAGE: &str = help_section!("long usage", "stat.md");
mod options {
pub const DEREFERENCE: &str = "dereference";
@@ -1741,67 +1685,9 @@
}
}
-fn get_long_usage() -> &'static str {
- "
-The valid format sequences for files (without --file-system):
-
- %a access rights in octal (note '#' and '0' printf flags)
- %A access rights in human readable form
- %b number of blocks allocated (see %B)
- %B the size in bytes of each block reported by %b
- %C SELinux security context string
- %d device number in decimal
- %D device number in hex
- %f raw mode in hex
- %F file type
- %g group ID of owner
- %G group name of owner
- %h number of hard links
- %i inode number
- %m mount point
- %n file name
- %N quoted file name with dereference if symbolic link
- %o optimal I/O transfer size hint
- %s total size, in bytes
- %t major device type in hex, for character/block device special files
- %T minor device type in hex, for character/block device special files
- %u user ID of owner
- %U user name of owner
- %w time of file birth, human-readable; - if unknown
- %W time of file birth, seconds since Epoch; 0 if unknown
- %x time of last access, human-readable
- %X time of last access, seconds since Epoch
- %y time of last data modification, human-readable
- %Y time of last data modification, seconds since Epoch
- %z time of last status change, human-readable
- %Z time of last status change, seconds since Epoch
-
-Valid format sequences for file systems:
-
- %a free blocks available to non-superuser
- %b total data blocks in file system
- %c total file nodes in file system
- %d free file nodes in file system
- %f free blocks in file system
- %i file system ID in hex
- %l maximum length of filenames
- %n file name
- %s block size (for faster transfers)
- %S fundamental block size (for block counts)
- %t file system type in hex
- %T file system type in human readable form
-
-NOTE: your shell may have its own version of stat, which usually supersedes
-the version described here. Please refer to your shell's documentation
-for details about the options it supports.
-"
-}
-
#[uucore::main]
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
- let matches = uu_app()
- .after_help(get_long_usage())
- .try_get_matches_from(args)?;
+ let matches = uu_app().after_help(LONG_USAGE).try_get_matches_from(args)?;
let stater = Stater::new(&matches)?;
let exit_status = stater.exec();
diff --git a/dev/src/uu_tr/tr.rs.html b/dev/src/uu_tr/tr.rs.html
index 9a952cd59..51ebfeae2 100644
--- a/dev/src/uu_tr/tr.rs.html
+++ b/dev/src/uu_tr/tr.rs.html
@@ -169,11 +169,6 @@
169
170
171
-172
-173
-174
-175
-176
// * This file is part of the uutils coreutils package.
// *
// * For the full copyright and license information, please view the LICENSE
@@ -195,8 +190,11 @@
use uucore::display::Quotable;
use uucore::error::{UResult, USimpleError, UUsageError};
-static ABOUT: &str = "Translate or delete characters";
+const ABOUT: &str = "Translate or delete characters";
const USAGE: &str = "{} [OPTION]... SET1 [SET2]";
+const LONG_USAGE: &str = "\
+ Translate, squeeze, and/or delete characters from standard input, \
+ writing to standard output.";
mod options {
pub const COMPLEMENT: &str = "complement";
@@ -206,19 +204,11 @@
pub const SETS: &str = "sets";
}
-fn get_long_usage() -> String {
- "Translate, squeeze, and/or delete characters from standard input, \
- writing to standard output."
- .to_string()
-}
-
#[uucore::main]
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
let args = args.collect_lossy();
- let matches = uu_app()
- .after_help(get_long_usage())
- .try_get_matches_from(args)?;
+ let matches = uu_app().after_help(LONG_USAGE).try_get_matches_from(args)?;
let delete_flag = matches.get_flag(options::DELETE);
let complement_flag = matches.get_flag(options::COMPLEMENT);
diff --git a/dev/src/uu_truncate/truncate.rs.html b/dev/src/uu_truncate/truncate.rs.html
index b5f36c517..e0d4c3ea4 100644
--- a/dev/src/uu_truncate/truncate.rs.html
+++ b/dev/src/uu_truncate/truncate.rs.html
@@ -461,11 +461,6 @@
461
462
463
-464
-465
-466
-467
-468
// * This file is part of the uutils coreutils package.
// *
// * (c) Alex Lyon <arcterus@mail.com>
@@ -541,8 +536,25 @@
}
}
-static ABOUT: &str = "Shrink or extend the size of each file to the specified size.";
+const ABOUT: &str = "Shrink or extend the size of each file to the specified size.";
const USAGE: &str = "{} [OPTION]... [FILE]...";
+const LONG_USAGE: &str = "\
+SIZE is an integer with an optional prefix and optional unit.
+The available units (K, M, G, T, P, E, Z, and Y) use the following format:
+ 'KB' => 1000 (kilobytes)
+ 'K' => 1024 (kibibytes)
+ 'MB' => 1000*1000 (megabytes)
+ 'M' => 1024*1024 (mebibytes)
+ 'GB' => 1000*1000*1000 (gigabytes)
+ 'G' => 1024*1024*1024 (gibibytes)
+SIZE may also be prefixed by one of the following to adjust the size of each
+file based on its current size:
+ '+' => extend by
+ '-' => reduce by
+ '<' => at most
+ '>' => at least
+ '/' => round down to multiple of
+ '%' => round up to multiple of";
pub mod options {
pub static IO_BLOCKS: &str = "io-blocks";
@@ -552,32 +564,10 @@
pub static ARG_FILES: &str = "files";
}
-fn get_long_usage() -> String {
- String::from(
- "
- SIZE is an integer with an optional prefix and optional unit.
- The available units (K, M, G, T, P, E, Z, and Y) use the following format:
- 'KB' => 1000 (kilobytes)
- 'K' => 1024 (kibibytes)
- 'MB' => 1000*1000 (megabytes)
- 'M' => 1024*1024 (mebibytes)
- 'GB' => 1000*1000*1000 (gigabytes)
- 'G' => 1024*1024*1024 (gibibytes)
- SIZE may also be prefixed by one of the following to adjust the size of each
- file based on its current size:
- '+' => extend by
- '-' => reduce by
- '<' => at most
- '>' => at least
- '/' => round down to multiple of
- '%' => round up to multiple of",
- )
-}
-
#[uucore::main]
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
let matches = uu_app()
- .after_help(get_long_usage())
+ .after_help(LONG_USAGE)
.try_get_matches_from(args)
.map_err(|e| {
e.print().expect("Error writing clap::Error");
diff --git a/dev/src/uu_uniq/uniq.rs.html b/dev/src/uu_uniq/uniq.rs.html
index f3d4ab499..c0343832b 100644
--- a/dev/src/uu_uniq/uniq.rs.html
+++ b/dev/src/uu_uniq/uniq.rs.html
@@ -434,11 +434,6 @@
434
435
436
-437
-438
-439
-440
-441
// * This file is part of the uutils coreutils package.
// *
// * (c) Chirag B Jadwani <chirag.jadwani@gmail.com>
@@ -456,8 +451,14 @@
use uucore::error::{FromIo, UResult, USimpleError, UUsageError};
use uucore::format_usage;
-static ABOUT: &str = "Report or omit repeated lines.";
+const ABOUT: &str = "Report or omit repeated lines.";
const USAGE: &str = "{} [OPTION]... [INPUT [OUTPUT]]...";
+const LONG_USAGE: &str = "\
+ Filter adjacent matching lines from INPUT (or standard input),\n\
+ writing to OUTPUT (or standard output).\n\n\
+ Note: 'uniq' does not detect repeated lines unless they are adjacent.\n\
+ You may want to sort the input first, or use 'sort -u' without 'uniq'.";
+
pub mod options {
pub static ALL_REPEATED: &str = "all-repeated";
pub static CHECK_CHARS: &str = "check-chars";
@@ -682,20 +683,9 @@
})
}
-fn get_long_usage() -> String {
- String::from(
- "Filter adjacent matching lines from INPUT (or standard input),\n\
- writing to OUTPUT (or standard output).
- Note: 'uniq' does not detect repeated lines unless they are adjacent.\n\
- You may want to sort the input first, or use 'sort -u' without 'uniq'.\n",
- )
-}
-
#[uucore::main]
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
- let matches = uu_app()
- .after_help(get_long_usage())
- .try_get_matches_from(args)?;
+ let matches = uu_app().after_help(LONG_USAGE).try_get_matches_from(args)?;
let files: Vec<String> = matches
.get_many::<String>(ARG_FILES)
diff --git a/dev/uu_chmod/fn.uu_app.html b/dev/uu_chmod/fn.uu_app.html
index 949f670a9..5fda6badb 100644
--- a/dev/uu_chmod/fn.uu_app.html
+++ b/dev/uu_chmod/fn.uu_app.html
@@ -1 +1 @@
-uu_app in uu_chmod - Rust
\ No newline at end of file
+uu_app in uu_chmod - Rust
\ No newline at end of file
diff --git a/dev/uu_chmod/fn.uumain.html b/dev/uu_chmod/fn.uumain.html
index 660ee8bd7..b19353a59 100644
--- a/dev/uu_chmod/fn.uumain.html
+++ b/dev/uu_chmod/fn.uumain.html
@@ -1 +1 @@
-uumain in uu_chmod - Rust
\ No newline at end of file
+uumain in uu_chmod - Rust
\ No newline at end of file
diff --git a/dev/uu_chmod/index.html b/dev/uu_chmod/index.html
index 5bf58078e..3bfc94e48 100644
--- a/dev/uu_chmod/index.html
+++ b/dev/uu_chmod/index.html
@@ -1 +1 @@
-uu_chmod - Rust
\ No newline at end of file
+uu_chmod - Rust
\ No newline at end of file
diff --git a/dev/uu_dirname/fn.uu_app.html b/dev/uu_dirname/fn.uu_app.html
index 684a3feee..61c8a240c 100644
--- a/dev/uu_dirname/fn.uu_app.html
+++ b/dev/uu_dirname/fn.uu_app.html
@@ -1 +1 @@
-uu_app in uu_dirname - Rust Function uu_dirname::uu_app
source · pub fn uu_app() -> Command
\ No newline at end of file
+uu_app in uu_dirname - Rust Function uu_dirname::uu_app
source · pub fn uu_app() -> Command
\ No newline at end of file
diff --git a/dev/uu_dirname/fn.uumain.html b/dev/uu_dirname/fn.uumain.html
index af4ca9dc0..3755fe6dc 100644
--- a/dev/uu_dirname/fn.uumain.html
+++ b/dev/uu_dirname/fn.uumain.html
@@ -1 +1 @@
-uumain in uu_dirname - Rust Function uu_dirname::uumain
source · pub fn uumain(args: impl Args) -> i32
\ No newline at end of file
+uumain in uu_dirname - Rust Function uu_dirname::uumain
source · pub fn uumain(args: impl Args) -> i32
\ No newline at end of file
diff --git a/dev/uu_dirname/index.html b/dev/uu_dirname/index.html
index 2f729b73f..882736fb7 100644
--- a/dev/uu_dirname/index.html
+++ b/dev/uu_dirname/index.html
@@ -1 +1 @@
-uu_dirname - Rust
\ No newline at end of file
+uu_dirname - Rust
\ No newline at end of file
diff --git a/dev/uu_mkdir/fn.uu_app.html b/dev/uu_mkdir/fn.uu_app.html
index 3bb34779c..44d38138a 100644
--- a/dev/uu_mkdir/fn.uu_app.html
+++ b/dev/uu_mkdir/fn.uu_app.html
@@ -1 +1 @@
-uu_app in uu_mkdir - Rust
\ No newline at end of file
+uu_app in uu_mkdir - Rust
\ No newline at end of file
diff --git a/dev/uu_mkdir/fn.uumain.html b/dev/uu_mkdir/fn.uumain.html
index 8610a193e..750c62005 100644
--- a/dev/uu_mkdir/fn.uumain.html
+++ b/dev/uu_mkdir/fn.uumain.html
@@ -1 +1 @@
-uumain in uu_mkdir - Rust
\ No newline at end of file
+uumain in uu_mkdir - Rust
\ No newline at end of file
diff --git a/dev/uu_mkdir/index.html b/dev/uu_mkdir/index.html
index 222a9b0c4..c57da6f68 100644
--- a/dev/uu_mkdir/index.html
+++ b/dev/uu_mkdir/index.html
@@ -1 +1 @@
-uu_mkdir - Rust
\ No newline at end of file
+uu_mkdir - Rust
\ No newline at end of file
diff --git a/dev/uu_rm/fn.uu_app.html b/dev/uu_rm/fn.uu_app.html
index 05f565d62..76db2a7bf 100644
--- a/dev/uu_rm/fn.uu_app.html
+++ b/dev/uu_rm/fn.uu_app.html
@@ -1 +1 @@
-uu_app in uu_rm - Rust
\ No newline at end of file
+uu_app in uu_rm - Rust
\ No newline at end of file
diff --git a/dev/uu_rm/fn.uumain.html b/dev/uu_rm/fn.uumain.html
index 006a7bcf8..5b4047e1f 100644
--- a/dev/uu_rm/fn.uumain.html
+++ b/dev/uu_rm/fn.uumain.html
@@ -1 +1 @@
-uumain in uu_rm - Rust
\ No newline at end of file
+uumain in uu_rm - Rust
\ No newline at end of file
diff --git a/dev/uu_rm/index.html b/dev/uu_rm/index.html
index 7b825a768..8b3acfe52 100644
--- a/dev/uu_rm/index.html
+++ b/dev/uu_rm/index.html
@@ -1 +1 @@
-uu_rm - Rust
\ No newline at end of file
+uu_rm - Rust
\ No newline at end of file
diff --git a/dev/uu_stat/enum.OutputType.html b/dev/uu_stat/enum.OutputType.html
index 1b4396e2a..1aa80607f 100644
--- a/dev/uu_stat/enum.OutputType.html
+++ b/dev/uu_stat/enum.OutputType.html
@@ -1,11 +1,11 @@
-OutputType in uu_stat - Rust Enum uu_stat::OutputType
source · pub enum OutputType {
+OutputType in uu_stat - Rust Enum uu_stat::OutputType
source · pub enum OutputType {
Str(String),
Integer(i64),
Unsigned(u64),
UnsignedHex(u64),
UnsignedOct(u32),
Unknown,
-}
Variants§
Trait Implementations§
Auto Trait Implementations§
§impl RefUnwindSafe for OutputType
§impl Send for OutputType
§impl Sync for OutputType
§impl Unpin for OutputType
§impl UnwindSafe for OutputType
Blanket Implementations§
source§impl<T> From<T> for T
const: unstable · source§fn from(t: T) -> T
Returns the argument unchanged.
+}Variants§
Trait Implementations§
Auto Trait Implementations§
§impl RefUnwindSafe for OutputType
§impl Send for OutputType
§impl Sync for OutputType
§impl Unpin for OutputType
§impl UnwindSafe for OutputType
Blanket Implementations§
source§impl<T, U> Into<U> for Twhere
U: From<T>,
const: unstable · source§fn into(self) -> U
Calls U::from(self).
That is, this conversion is whatever the implementation of
From<T> for U chooses to do.
diff --git a/dev/uu_stat/fn.uu_app.html b/dev/uu_stat/fn.uu_app.html
index ed54bf608..09b092ceb 100644
--- a/dev/uu_stat/fn.uu_app.html
+++ b/dev/uu_stat/fn.uu_app.html
@@ -1 +1 @@
-uu_app in uu_stat - Rust
\ No newline at end of file
+uu_app in uu_stat - Rust
\ No newline at end of file
diff --git a/dev/uu_stat/fn.uumain.html b/dev/uu_stat/fn.uumain.html
index 64c9cb15a..b125df2b0 100644
--- a/dev/uu_stat/fn.uumain.html
+++ b/dev/uu_stat/fn.uumain.html
@@ -1 +1 @@
-uumain in uu_stat - Rust
\ No newline at end of file
+uumain in uu_stat - Rust
\ No newline at end of file
diff --git a/dev/uu_stat/index.html b/dev/uu_stat/index.html
index 9de0134a8..867aaa119 100644
--- a/dev/uu_stat/index.html
+++ b/dev/uu_stat/index.html
@@ -1 +1 @@
-uu_stat - Rust
\ No newline at end of file
+uu_stat - Rust
\ No newline at end of file
diff --git a/dev/uu_tr/fn.uu_app.html b/dev/uu_tr/fn.uu_app.html
index 75cdfed64..068647cf7 100644
--- a/dev/uu_tr/fn.uu_app.html
+++ b/dev/uu_tr/fn.uu_app.html
@@ -1 +1 @@
-uu_app in uu_tr - Rust
\ No newline at end of file
+uu_app in uu_tr - Rust
\ No newline at end of file
diff --git a/dev/uu_tr/fn.uumain.html b/dev/uu_tr/fn.uumain.html
index 62e1ca745..eca36f52d 100644
--- a/dev/uu_tr/fn.uumain.html
+++ b/dev/uu_tr/fn.uumain.html
@@ -1 +1 @@
-uumain in uu_tr - Rust
\ No newline at end of file
+uumain in uu_tr - Rust
\ No newline at end of file
diff --git a/dev/uu_tr/index.html b/dev/uu_tr/index.html
index 20c795f50..ed3724908 100644
--- a/dev/uu_tr/index.html
+++ b/dev/uu_tr/index.html
@@ -1 +1 @@
-uu_tr - Rust
\ No newline at end of file
+uu_tr - Rust
\ No newline at end of file
diff --git a/dev/uu_truncate/fn.uu_app.html b/dev/uu_truncate/fn.uu_app.html
index e52a51bef..862f735d7 100644
--- a/dev/uu_truncate/fn.uu_app.html
+++ b/dev/uu_truncate/fn.uu_app.html
@@ -1 +1 @@
-uu_app in uu_truncate - Rust Function uu_truncate::uu_app
source · pub fn uu_app() -> Command
\ No newline at end of file
+uu_app in uu_truncate - Rust Function uu_truncate::uu_app
source · pub fn uu_app() -> Command
\ No newline at end of file
diff --git a/dev/uu_truncate/fn.uumain.html b/dev/uu_truncate/fn.uumain.html
index 37da3aee8..e8766a821 100644
--- a/dev/uu_truncate/fn.uumain.html
+++ b/dev/uu_truncate/fn.uumain.html
@@ -1 +1 @@
-uumain in uu_truncate - Rust Function uu_truncate::uumain
source · pub fn uumain(args: impl Args) -> i32
\ No newline at end of file
+uumain in uu_truncate - Rust Function uu_truncate::uumain
source · pub fn uumain(args: impl Args) -> i32
\ No newline at end of file
diff --git a/dev/uu_truncate/index.html b/dev/uu_truncate/index.html
index 51770ec9d..0512d5e38 100644
--- a/dev/uu_truncate/index.html
+++ b/dev/uu_truncate/index.html
@@ -1 +1 @@
-uu_truncate - Rust
\ No newline at end of file
+uu_truncate - Rust
\ No newline at end of file
diff --git a/dev/uu_truncate/options/index.html b/dev/uu_truncate/options/index.html
index 7e9aae824..bc64e259f 100644
--- a/dev/uu_truncate/options/index.html
+++ b/dev/uu_truncate/options/index.html
@@ -1 +1 @@
-uu_truncate::options - Rust
\ No newline at end of file
+uu_truncate::options - Rust
\ No newline at end of file
diff --git a/dev/uu_truncate/options/static.ARG_FILES.html b/dev/uu_truncate/options/static.ARG_FILES.html
index 2b2ee039b..1ca30066e 100644
--- a/dev/uu_truncate/options/static.ARG_FILES.html
+++ b/dev/uu_truncate/options/static.ARG_FILES.html
@@ -1 +1 @@
-ARG_FILES in uu_truncate::options - Rust Static uu_truncate::options::ARG_FILES
source · pub static ARG_FILES: &str
\ No newline at end of file
+ARG_FILES in uu_truncate::options - Rust Static uu_truncate::options::ARG_FILES
source · pub static ARG_FILES: &str
\ No newline at end of file
diff --git a/dev/uu_truncate/options/static.IO_BLOCKS.html b/dev/uu_truncate/options/static.IO_BLOCKS.html
index f57d528cc..bb661cb3a 100644
--- a/dev/uu_truncate/options/static.IO_BLOCKS.html
+++ b/dev/uu_truncate/options/static.IO_BLOCKS.html
@@ -1 +1 @@
-IO_BLOCKS in uu_truncate::options - Rust Static uu_truncate::options::IO_BLOCKS
source · pub static IO_BLOCKS: &str
\ No newline at end of file
+IO_BLOCKS in uu_truncate::options - Rust Static uu_truncate::options::IO_BLOCKS
source · pub static IO_BLOCKS: &str
\ No newline at end of file
diff --git a/dev/uu_truncate/options/static.NO_CREATE.html b/dev/uu_truncate/options/static.NO_CREATE.html
index 67d2d2732..86218d2ac 100644
--- a/dev/uu_truncate/options/static.NO_CREATE.html
+++ b/dev/uu_truncate/options/static.NO_CREATE.html
@@ -1 +1 @@
-NO_CREATE in uu_truncate::options - Rust Static uu_truncate::options::NO_CREATE
source · pub static NO_CREATE: &str
\ No newline at end of file
+NO_CREATE in uu_truncate::options - Rust Static uu_truncate::options::NO_CREATE
source · pub static NO_CREATE: &str
\ No newline at end of file
diff --git a/dev/uu_truncate/options/static.REFERENCE.html b/dev/uu_truncate/options/static.REFERENCE.html
index 4fe1f1660..986f76b42 100644
--- a/dev/uu_truncate/options/static.REFERENCE.html
+++ b/dev/uu_truncate/options/static.REFERENCE.html
@@ -1 +1 @@
-REFERENCE in uu_truncate::options - Rust Static uu_truncate::options::REFERENCE
source · pub static REFERENCE: &str
\ No newline at end of file
+REFERENCE in uu_truncate::options - Rust Static uu_truncate::options::REFERENCE
source · pub static REFERENCE: &str
\ No newline at end of file
diff --git a/dev/uu_truncate/options/static.SIZE.html b/dev/uu_truncate/options/static.SIZE.html
index be3ea78af..7d785bfea 100644
--- a/dev/uu_truncate/options/static.SIZE.html
+++ b/dev/uu_truncate/options/static.SIZE.html
@@ -1 +1 @@
-SIZE in uu_truncate::options - Rust Static uu_truncate::options::SIZE
source · pub static SIZE: &str
\ No newline at end of file
+SIZE in uu_truncate::options - Rust Static uu_truncate::options::SIZE
source · pub static SIZE: &str
\ No newline at end of file
diff --git a/dev/uu_uniq/fn.uu_app.html b/dev/uu_uniq/fn.uu_app.html
index ee8742485..ba73eeb93 100644
--- a/dev/uu_uniq/fn.uu_app.html
+++ b/dev/uu_uniq/fn.uu_app.html
@@ -1 +1 @@
-uu_app in uu_uniq - Rust
\ No newline at end of file
+uu_app in uu_uniq - Rust
\ No newline at end of file
diff --git a/dev/uu_uniq/fn.uumain.html b/dev/uu_uniq/fn.uumain.html
index 01c8fc5ae..10549e794 100644
--- a/dev/uu_uniq/fn.uumain.html
+++ b/dev/uu_uniq/fn.uumain.html
@@ -1 +1 @@
-uumain in uu_uniq - Rust
\ No newline at end of file
+uumain in uu_uniq - Rust
\ No newline at end of file
diff --git a/dev/uu_uniq/index.html b/dev/uu_uniq/index.html
index 253ce65e4..f107c8ee5 100644
--- a/dev/uu_uniq/index.html
+++ b/dev/uu_uniq/index.html
@@ -1 +1 @@
-uu_uniq - Rust
\ No newline at end of file
+uu_uniq - Rust
\ No newline at end of file
diff --git a/dev/uu_uniq/options/index.html b/dev/uu_uniq/options/index.html
index 6c1fca506..893f7322b 100644
--- a/dev/uu_uniq/options/index.html
+++ b/dev/uu_uniq/options/index.html
@@ -1 +1 @@
-uu_uniq::options - Rust
\ No newline at end of file
+uu_uniq::options - Rust
\ No newline at end of file
diff --git a/dev/uu_uniq/options/static.ALL_REPEATED.html b/dev/uu_uniq/options/static.ALL_REPEATED.html
index f84d92524..33dd1018e 100644
--- a/dev/uu_uniq/options/static.ALL_REPEATED.html
+++ b/dev/uu_uniq/options/static.ALL_REPEATED.html
@@ -1 +1 @@
-ALL_REPEATED in uu_uniq::options - Rust Static uu_uniq::options::ALL_REPEATED
source · pub static ALL_REPEATED: &str
\ No newline at end of file
+ALL_REPEATED in uu_uniq::options - Rust Static uu_uniq::options::ALL_REPEATED
source · pub static ALL_REPEATED: &str
\ No newline at end of file
diff --git a/dev/uu_uniq/options/static.CHECK_CHARS.html b/dev/uu_uniq/options/static.CHECK_CHARS.html
index f6af014b3..06e877657 100644
--- a/dev/uu_uniq/options/static.CHECK_CHARS.html
+++ b/dev/uu_uniq/options/static.CHECK_CHARS.html
@@ -1 +1 @@
-CHECK_CHARS in uu_uniq::options - Rust Static uu_uniq::options::CHECK_CHARS
source · pub static CHECK_CHARS: &str
\ No newline at end of file
+CHECK_CHARS in uu_uniq::options - Rust Static uu_uniq::options::CHECK_CHARS
source · pub static CHECK_CHARS: &str
\ No newline at end of file
diff --git a/dev/uu_uniq/options/static.COUNT.html b/dev/uu_uniq/options/static.COUNT.html
index 92622774f..a38a33604 100644
--- a/dev/uu_uniq/options/static.COUNT.html
+++ b/dev/uu_uniq/options/static.COUNT.html
@@ -1 +1 @@
-COUNT in uu_uniq::options - Rust
\ No newline at end of file
+COUNT in uu_uniq::options - Rust
\ No newline at end of file
diff --git a/dev/uu_uniq/options/static.GROUP.html b/dev/uu_uniq/options/static.GROUP.html
index a31c7b96a..c056d7b6c 100644
--- a/dev/uu_uniq/options/static.GROUP.html
+++ b/dev/uu_uniq/options/static.GROUP.html
@@ -1 +1 @@
-GROUP in uu_uniq::options - Rust
\ No newline at end of file
+GROUP in uu_uniq::options - Rust
\ No newline at end of file
diff --git a/dev/uu_uniq/options/static.IGNORE_CASE.html b/dev/uu_uniq/options/static.IGNORE_CASE.html
index 1e4be9af2..92c1d6375 100644
--- a/dev/uu_uniq/options/static.IGNORE_CASE.html
+++ b/dev/uu_uniq/options/static.IGNORE_CASE.html
@@ -1 +1 @@
-IGNORE_CASE in uu_uniq::options - Rust Static uu_uniq::options::IGNORE_CASE
source · pub static IGNORE_CASE: &str
\ No newline at end of file
+IGNORE_CASE in uu_uniq::options - Rust Static uu_uniq::options::IGNORE_CASE
source · pub static IGNORE_CASE: &str
\ No newline at end of file
diff --git a/dev/uu_uniq/options/static.REPEATED.html b/dev/uu_uniq/options/static.REPEATED.html
index a18f0c97e..c1455ca25 100644
--- a/dev/uu_uniq/options/static.REPEATED.html
+++ b/dev/uu_uniq/options/static.REPEATED.html
@@ -1 +1 @@
-REPEATED in uu_uniq::options - Rust
\ No newline at end of file
+REPEATED in uu_uniq::options - Rust
\ No newline at end of file
diff --git a/dev/uu_uniq/options/static.SKIP_CHARS.html b/dev/uu_uniq/options/static.SKIP_CHARS.html
index 154c554b4..a656457e7 100644
--- a/dev/uu_uniq/options/static.SKIP_CHARS.html
+++ b/dev/uu_uniq/options/static.SKIP_CHARS.html
@@ -1 +1 @@
-SKIP_CHARS in uu_uniq::options - Rust Static uu_uniq::options::SKIP_CHARS
source · pub static SKIP_CHARS: &str
\ No newline at end of file
+SKIP_CHARS in uu_uniq::options - Rust Static uu_uniq::options::SKIP_CHARS
source · pub static SKIP_CHARS: &str
\ No newline at end of file
diff --git a/dev/uu_uniq/options/static.SKIP_FIELDS.html b/dev/uu_uniq/options/static.SKIP_FIELDS.html
index 68c1f3304..460f4cd06 100644
--- a/dev/uu_uniq/options/static.SKIP_FIELDS.html
+++ b/dev/uu_uniq/options/static.SKIP_FIELDS.html
@@ -1 +1 @@
-SKIP_FIELDS in uu_uniq::options - Rust Static uu_uniq::options::SKIP_FIELDS
source · pub static SKIP_FIELDS: &str
\ No newline at end of file
+SKIP_FIELDS in uu_uniq::options - Rust Static uu_uniq::options::SKIP_FIELDS
source · pub static SKIP_FIELDS: &str
\ No newline at end of file
diff --git a/dev/uu_uniq/options/static.UNIQUE.html b/dev/uu_uniq/options/static.UNIQUE.html
index b75f40592..5d0498e32 100644
--- a/dev/uu_uniq/options/static.UNIQUE.html
+++ b/dev/uu_uniq/options/static.UNIQUE.html
@@ -1 +1 @@
-UNIQUE in uu_uniq::options - Rust
\ No newline at end of file
+UNIQUE in uu_uniq::options - Rust
\ No newline at end of file
diff --git a/dev/uu_uniq/options/static.ZERO_TERMINATED.html b/dev/uu_uniq/options/static.ZERO_TERMINATED.html
index ea0d9017a..6e3a6f977 100644
--- a/dev/uu_uniq/options/static.ZERO_TERMINATED.html
+++ b/dev/uu_uniq/options/static.ZERO_TERMINATED.html
@@ -1 +1 @@
-ZERO_TERMINATED in uu_uniq::options - Rust Static uu_uniq::options::ZERO_TERMINATED
source · pub static ZERO_TERMINATED: &str
\ No newline at end of file
+ZERO_TERMINATED in uu_uniq::options - Rust Static uu_uniq::options::ZERO_TERMINATED
source · pub static ZERO_TERMINATED: &str
\ No newline at end of file