pub fn uu_app() -> Commanddiff --git a/dev/src/uu_cksum/cksum.rs.html b/dev/src/uu_cksum/cksum.rs.html index c796112bd..ed9ed82fa 100644 --- a/dev/src/uu_cksum/cksum.rs.html +++ b/dev/src/uu_cksum/cksum.rs.html @@ -266,6 +266,12 @@ 266 267 268 +269 +270 +271 +272 +273 +274
// This file is part of the uutils coreutils package.
//
// (c) Michael Gehring <mg@ebfe.org>
@@ -427,8 +433,14 @@
div_ceil(sz, options.output_bits),
filename.display()
),
- (_, true) => println!("{sum} {sz}"),
- (_, false) => println!("{sum} {sz} {}", filename.display()),
+ (ALGORITHM_OPTIONS_CRC, true) => println!("{sum} {sz}"),
+ (ALGORITHM_OPTIONS_CRC, false) => println!("{sum} {sz} {}", filename.display()),
+ (ALGORITHM_OPTIONS_BLAKE2B, _) => println!("BLAKE2b ({}) = {sum}", filename.display()),
+ _ => println!(
+ "{} ({}) = {sum}",
+ options.algo_name.to_ascii_uppercase(),
+ filename.display()
+ ),
}
}
diff --git a/dev/src/uu_cp/cp.rs.html b/dev/src/uu_cp/cp.rs.html
index 34f28ebf6..583c657e2 100644
--- a/dev/src/uu_cp/cp.rs.html
+++ b/dev/src/uu_cp/cp.rs.html
@@ -1890,6 +1890,32 @@
1890
1891
1892
+1893
+1894
+1895
+1896
+1897
+1898
+1899
+1900
+1901
+1902
+1903
+1904
+1905
+1906
+1907
+1908
+1909
+1910
+1911
+1912
+1913
+1914
+1915
+1916
+1917
+1918
#![allow(clippy::missing_safety_doc)]
#![allow(clippy::extra_unused_lifetimes)]
@@ -3596,6 +3622,11 @@
}
copy_attributes(source, dest, &options.attributes)?;
+ if options.parents && should_preserve_attribute(options) {
+ for (x, y) in aligned_ancestors(source, dest) {
+ copy_attributes(x, y, &options.attributes)?;
+ }
+ }
if let Some(progress_bar) = progress_bar {
progress_bar.inc(fs::metadata(source)?.len());
@@ -3645,6 +3676,27 @@
Ok(())
}
+fn should_preserve_attribute(options: &Options) -> bool {
+ let checks = [
+ &options.attributes.mode,
+ &options.attributes.timestamps,
+ &options.attributes.links,
+ &options.attributes.context,
+ &options.attributes.xattr,
+ ];
+
+ #[cfg(unix)]
+ let checks = [
+ checks.as_slice(),
+ [&options.attributes.ownership].as_slice(),
+ ]
+ .concat();
+
+ checks
+ .iter()
+ .any(|attr| matches!(attr, Preserve::Yes { .. }))
+}
+
// "Copies" a FIFO by creating a new one. This workaround is because Rust's
// built-in fs::copy does not handle FIFOs (see rust-lang/rust/issues/79390).
#[cfg(unix)]
diff --git a/dev/src/uu_ls/ls.rs.html b/dev/src/uu_ls/ls.rs.html
index c07e7081e..72a4bafea 100644
--- a/dev/src/uu_ls/ls.rs.html
+++ b/dev/src/uu_ls/ls.rs.html
@@ -3117,6 +3117,18 @@
3117
3118
3119
+3120
+3121
+3122
+3123
+3124
+3125
+3126
+3127
+3128
+3129
+3130
+3131
// This file is part of the uutils coreutils package.
//
// (c) Jeremiah Peschka <jeremiah.peschka@gmail.com>
@@ -3160,7 +3172,13 @@
target_os = "linux",
target_os = "macos",
target_os = "android",
- target_os = "ios"
+ target_os = "ios",
+ target_os = "freebsd",
+ target_os = "dragonfly",
+ target_os = "netbsd",
+ target_os = "openbsd",
+ target_os = "illumos",
+ target_os = "solaris"
))]
use uucore::libc::{dev_t, major, minor};
#[cfg(unix)]
@@ -5835,7 +5853,13 @@
target_os = "linux",
target_os = "macos",
target_os = "android",
- target_os = "ios"
+ target_os = "ios",
+ target_os = "freebsd",
+ target_os = "dragonfly",
+ target_os = "netbsd",
+ target_os = "openbsd",
+ target_os = "illumos",
+ target_os = "solaris"
))]
{
let ft = metadata.file_type();
diff --git a/dev/uu_cksum/fn.uu_app.html b/dev/uu_cksum/fn.uu_app.html
index d01528d2b..0be2c4450 100644
--- a/dev/uu_cksum/fn.uu_app.html
+++ b/dev/uu_cksum/fn.uu_app.html
@@ -1 +1 @@
-uu_app in uu_cksum - Rust
\ No newline at end of file
+uu_app in uu_cksum - Rust
\ No newline at end of file
diff --git a/dev/uu_cksum/fn.uumain.html b/dev/uu_cksum/fn.uumain.html
index 243aa5e8b..7860b0def 100644
--- a/dev/uu_cksum/fn.uumain.html
+++ b/dev/uu_cksum/fn.uumain.html
@@ -1 +1 @@
-uumain in uu_cksum - Rust
\ No newline at end of file
+uumain in uu_cksum - Rust
\ No newline at end of file
diff --git a/dev/uu_cksum/index.html b/dev/uu_cksum/index.html
index db8fb4944..7f7f03e0a 100644
--- a/dev/uu_cksum/index.html
+++ b/dev/uu_cksum/index.html
@@ -1 +1 @@
-uu_cksum - Rust
\ No newline at end of file
+uu_cksum - Rust
\ No newline at end of file
diff --git a/dev/uu_cp/fn.localize_to_target.html b/dev/uu_cp/fn.localize_to_target.html
index ce0d49c5a..5011e121d 100644
--- a/dev/uu_cp/fn.localize_to_target.html
+++ b/dev/uu_cp/fn.localize_to_target.html
@@ -1,4 +1,4 @@
-localize_to_target in uu_cp - Rust Function uu_cp::localize_to_target
source · pub fn localize_to_target(
+localize_to_target in uu_cp - Rust Function uu_cp::localize_to_target
source · pub fn localize_to_target(
root: &Path,
source: &Path,
target: &Path
diff --git a/dev/uu_cp/fn.verify_target_type.html b/dev/uu_cp/fn.verify_target_type.html
index d833547fa..ff49f6241 100644
--- a/dev/uu_cp/fn.verify_target_type.html
+++ b/dev/uu_cp/fn.verify_target_type.html
@@ -1,4 +1,4 @@
-verify_target_type in uu_cp - Rust Function uu_cp::verify_target_type
source · pub fn verify_target_type(
+verify_target_type in uu_cp - Rust Function uu_cp::verify_target_type
source · pub fn verify_target_type(
target: &Path,
target_type: &TargetType
) -> CopyResult<()>
Expand description
Generate an error message if target is not the correct target_type
diff --git a/dev/uu_cp/index.html b/dev/uu_cp/index.html
index 4ca3f1cb0..1d070dc87 100644
--- a/dev/uu_cp/index.html
+++ b/dev/uu_cp/index.html
@@ -1,2 +1,2 @@
-uu_cp - Rust Structs
- Re-usable, extensible copy options
Enums
- Specifies whether when overwrite files
- Specifies whether when overwrite files
- Possible arguments for
--reflink. - Possible arguments for
--sparse. - Specifies the expected file type of copy target
Functions
- Remove the
root prefix from source and prefix it with target
+uu_cp - Rust Structs
- Re-usable, extensible copy options
Enums
- Specifies whether when overwrite files
- Specifies whether when overwrite files
- Possible arguments for
--reflink. - Possible arguments for
--sparse. - Specifies the expected file type of copy target
Functions
- Remove the
root prefix from source and prefix it with target
to create a file that is local to target - Generate an error message if
target is not the correct target_type
Type Definitions
\ No newline at end of file
diff --git a/dev/uu_ls/enum.Format.html b/dev/uu_ls/enum.Format.html
index af12b3d40..307fbca16 100644
--- a/dev/uu_ls/enum.Format.html
+++ b/dev/uu_ls/enum.Format.html
@@ -1,12 +1,12 @@
-Format in uu_ls - Rust pub enum Format {
+Format in uu_ls - Rust pub enum Format {
Columns,
Long,
OneLine,
Across,
Commas,
-}
Variants§
Trait Implementations§
source§impl PartialEq<Format> for Format
source§fn eq(&self, other: &Format) -> bool
This method tests for self and other values to be equal, and is used
+}Variants§
Trait Implementations§
source§impl PartialEq<Format> for Format
source§impl Eq for Format
source§impl StructuralEq for Format
source§impl StructuralPartialEq for Format
Auto Trait Implementations§
§impl RefUnwindSafe for Format
§impl Send for Format
§impl Sync for Format
§impl Unpin for Format
§impl UnwindSafe for Format
Blanket Implementations§
source§impl Eq for Format
source§impl StructuralEq for Format
source§impl StructuralPartialEq for Format
Auto Trait Implementations§
§impl RefUnwindSafe for Format
§impl Send for Format
§impl Sync for Format
§impl Unpin for Format
§impl UnwindSafe for Format
Blanket Implementations§
source§impl<T> From<T> for T
const: unstable · source§fn from(t: T) -> T
Returns the argument unchanged.
diff --git a/dev/uu_ls/fn.list.html b/dev/uu_ls/fn.list.html
index 6ea26ef58..5f7f23855 100644
--- a/dev/uu_ls/fn.list.html
+++ b/dev/uu_ls/fn.list.html
@@ -1 +1 @@
-list in uu_ls - Rust
\ No newline at end of file
+list in uu_ls - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/fn.uu_app.html b/dev/uu_ls/fn.uu_app.html
index c06c975ad..cef86c094 100644
--- a/dev/uu_ls/fn.uu_app.html
+++ b/dev/uu_ls/fn.uu_app.html
@@ -1 +1 @@
-uu_app in uu_ls - Rust
\ No newline at end of file
+uu_app in uu_ls - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/fn.uumain.html b/dev/uu_ls/fn.uumain.html
index c47bf5022..389ce2c07 100644
--- a/dev/uu_ls/fn.uumain.html
+++ b/dev/uu_ls/fn.uumain.html
@@ -1 +1 @@
-uumain in uu_ls - Rust
\ No newline at end of file
+uumain in uu_ls - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/index.html b/dev/uu_ls/index.html
index 42dd476eb..c356bc96f 100644
--- a/dev/uu_ls/index.html
+++ b/dev/uu_ls/index.html
@@ -1 +1 @@
-uu_ls - Rust
\ No newline at end of file
+uu_ls - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/dereference/index.html b/dev/uu_ls/options/dereference/index.html
index 7751186c9..d083afc7e 100644
--- a/dev/uu_ls/options/dereference/index.html
+++ b/dev/uu_ls/options/dereference/index.html
@@ -1 +1 @@
-uu_ls::options::dereference - Rust
\ No newline at end of file
+uu_ls::options::dereference - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/dereference/static.ALL.html b/dev/uu_ls/options/dereference/static.ALL.html
index 480fd08ff..1b3ca3e32 100644
--- a/dev/uu_ls/options/dereference/static.ALL.html
+++ b/dev/uu_ls/options/dereference/static.ALL.html
@@ -1 +1 @@
-ALL in uu_ls::options::dereference - Rust
\ No newline at end of file
+ALL in uu_ls::options::dereference - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/dereference/static.ARGS.html b/dev/uu_ls/options/dereference/static.ARGS.html
index 834085f1d..880616907 100644
--- a/dev/uu_ls/options/dereference/static.ARGS.html
+++ b/dev/uu_ls/options/dereference/static.ARGS.html
@@ -1 +1 @@
-ARGS in uu_ls::options::dereference - Rust
\ No newline at end of file
+ARGS in uu_ls::options::dereference - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/dereference/static.DIR_ARGS.html b/dev/uu_ls/options/dereference/static.DIR_ARGS.html
index 0b941d1db..a9b5287b5 100644
--- a/dev/uu_ls/options/dereference/static.DIR_ARGS.html
+++ b/dev/uu_ls/options/dereference/static.DIR_ARGS.html
@@ -1 +1 @@
-DIR_ARGS in uu_ls::options::dereference - Rust
\ No newline at end of file
+DIR_ARGS in uu_ls::options::dereference - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/files/index.html b/dev/uu_ls/options/files/index.html
index 12bb4092f..9cbd9ebcf 100644
--- a/dev/uu_ls/options/files/index.html
+++ b/dev/uu_ls/options/files/index.html
@@ -1 +1 @@
-uu_ls::options::files - Rust
\ No newline at end of file
+uu_ls::options::files - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/files/static.ALL.html b/dev/uu_ls/options/files/static.ALL.html
index 68df74f67..9293a28ca 100644
--- a/dev/uu_ls/options/files/static.ALL.html
+++ b/dev/uu_ls/options/files/static.ALL.html
@@ -1 +1 @@
-ALL in uu_ls::options::files - Rust
\ No newline at end of file
+ALL in uu_ls::options::files - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/files/static.ALMOST_ALL.html b/dev/uu_ls/options/files/static.ALMOST_ALL.html
index c0ca7ebf7..07599b878 100644
--- a/dev/uu_ls/options/files/static.ALMOST_ALL.html
+++ b/dev/uu_ls/options/files/static.ALMOST_ALL.html
@@ -1 +1 @@
-ALMOST_ALL in uu_ls::options::files - Rust
\ No newline at end of file
+ALMOST_ALL in uu_ls::options::files - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/format/index.html b/dev/uu_ls/options/format/index.html
index 65091c392..07db78829 100644
--- a/dev/uu_ls/options/format/index.html
+++ b/dev/uu_ls/options/format/index.html
@@ -1 +1 @@
-uu_ls::options::format - Rust
\ No newline at end of file
+uu_ls::options::format - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/format/static.ACROSS.html b/dev/uu_ls/options/format/static.ACROSS.html
index 1497aa49b..ac4576a99 100644
--- a/dev/uu_ls/options/format/static.ACROSS.html
+++ b/dev/uu_ls/options/format/static.ACROSS.html
@@ -1 +1 @@
-ACROSS in uu_ls::options::format - Rust
\ No newline at end of file
+ACROSS in uu_ls::options::format - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/format/static.COLUMNS.html b/dev/uu_ls/options/format/static.COLUMNS.html
index 72e1ceb4b..8a1cd0cd1 100644
--- a/dev/uu_ls/options/format/static.COLUMNS.html
+++ b/dev/uu_ls/options/format/static.COLUMNS.html
@@ -1 +1 @@
-COLUMNS in uu_ls::options::format - Rust
\ No newline at end of file
+COLUMNS in uu_ls::options::format - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/format/static.COMMAS.html b/dev/uu_ls/options/format/static.COMMAS.html
index c47d8ccde..82e01010b 100644
--- a/dev/uu_ls/options/format/static.COMMAS.html
+++ b/dev/uu_ls/options/format/static.COMMAS.html
@@ -1 +1 @@
-COMMAS in uu_ls::options::format - Rust
\ No newline at end of file
+COMMAS in uu_ls::options::format - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/format/static.LONG.html b/dev/uu_ls/options/format/static.LONG.html
index 7845c00a7..c062b1d75 100644
--- a/dev/uu_ls/options/format/static.LONG.html
+++ b/dev/uu_ls/options/format/static.LONG.html
@@ -1 +1 @@
-LONG in uu_ls::options::format - Rust
\ No newline at end of file
+LONG in uu_ls::options::format - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/format/static.LONG_NO_GROUP.html b/dev/uu_ls/options/format/static.LONG_NO_GROUP.html
index 5ce3eeba1..e6d210bcf 100644
--- a/dev/uu_ls/options/format/static.LONG_NO_GROUP.html
+++ b/dev/uu_ls/options/format/static.LONG_NO_GROUP.html
@@ -1 +1 @@
-LONG_NO_GROUP in uu_ls::options::format - Rust
\ No newline at end of file
+LONG_NO_GROUP in uu_ls::options::format - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/format/static.LONG_NO_OWNER.html b/dev/uu_ls/options/format/static.LONG_NO_OWNER.html
index 9b43377a4..90328406a 100644
--- a/dev/uu_ls/options/format/static.LONG_NO_OWNER.html
+++ b/dev/uu_ls/options/format/static.LONG_NO_OWNER.html
@@ -1 +1 @@
-LONG_NO_OWNER in uu_ls::options::format - Rust
\ No newline at end of file
+LONG_NO_OWNER in uu_ls::options::format - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/format/static.LONG_NUMERIC_UID_GID.html b/dev/uu_ls/options/format/static.LONG_NUMERIC_UID_GID.html
index d58f60d3e..9b63a83fc 100644
--- a/dev/uu_ls/options/format/static.LONG_NUMERIC_UID_GID.html
+++ b/dev/uu_ls/options/format/static.LONG_NUMERIC_UID_GID.html
@@ -1 +1 @@
-LONG_NUMERIC_UID_GID in uu_ls::options::format - Rust
\ No newline at end of file
+LONG_NUMERIC_UID_GID in uu_ls::options::format - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/format/static.ONE_LINE.html b/dev/uu_ls/options/format/static.ONE_LINE.html
index 4636b059c..70d5397f8 100644
--- a/dev/uu_ls/options/format/static.ONE_LINE.html
+++ b/dev/uu_ls/options/format/static.ONE_LINE.html
@@ -1 +1 @@
-ONE_LINE in uu_ls::options::format - Rust
\ No newline at end of file
+ONE_LINE in uu_ls::options::format - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/format/static.TAB_SIZE.html b/dev/uu_ls/options/format/static.TAB_SIZE.html
index 4cf319c32..b43a734df 100644
--- a/dev/uu_ls/options/format/static.TAB_SIZE.html
+++ b/dev/uu_ls/options/format/static.TAB_SIZE.html
@@ -1 +1 @@
-TAB_SIZE in uu_ls::options::format - Rust
\ No newline at end of file
+TAB_SIZE in uu_ls::options::format - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/index.html b/dev/uu_ls/options/index.html
index 3aade7110..721cb37af 100644
--- a/dev/uu_ls/options/index.html
+++ b/dev/uu_ls/options/index.html
@@ -1 +1 @@
-uu_ls::options - Rust
\ No newline at end of file
+uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/indicator_style/index.html b/dev/uu_ls/options/indicator_style/index.html
index 7bfc568a9..0a01f5a9b 100644
--- a/dev/uu_ls/options/indicator_style/index.html
+++ b/dev/uu_ls/options/indicator_style/index.html
@@ -1 +1 @@
-uu_ls::options::indicator_style - Rust
\ No newline at end of file
+uu_ls::options::indicator_style - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/indicator_style/static.CLASSIFY.html b/dev/uu_ls/options/indicator_style/static.CLASSIFY.html
index 90a40e80e..b8367ceb4 100644
--- a/dev/uu_ls/options/indicator_style/static.CLASSIFY.html
+++ b/dev/uu_ls/options/indicator_style/static.CLASSIFY.html
@@ -1 +1 @@
-CLASSIFY in uu_ls::options::indicator_style - Rust
\ No newline at end of file
+CLASSIFY in uu_ls::options::indicator_style - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/indicator_style/static.FILE_TYPE.html b/dev/uu_ls/options/indicator_style/static.FILE_TYPE.html
index 9edaed2e3..3f9a6f247 100644
--- a/dev/uu_ls/options/indicator_style/static.FILE_TYPE.html
+++ b/dev/uu_ls/options/indicator_style/static.FILE_TYPE.html
@@ -1 +1 @@
-FILE_TYPE in uu_ls::options::indicator_style - Rust
\ No newline at end of file
+FILE_TYPE in uu_ls::options::indicator_style - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/indicator_style/static.SLASH.html b/dev/uu_ls/options/indicator_style/static.SLASH.html
index 19dcdecd1..efd615312 100644
--- a/dev/uu_ls/options/indicator_style/static.SLASH.html
+++ b/dev/uu_ls/options/indicator_style/static.SLASH.html
@@ -1 +1 @@
-SLASH in uu_ls::options::indicator_style - Rust
\ No newline at end of file
+SLASH in uu_ls::options::indicator_style - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/quoting/index.html b/dev/uu_ls/options/quoting/index.html
index 80f3aa14e..8fcea6d5f 100644
--- a/dev/uu_ls/options/quoting/index.html
+++ b/dev/uu_ls/options/quoting/index.html
@@ -1 +1 @@
-uu_ls::options::quoting - Rust
\ No newline at end of file
+uu_ls::options::quoting - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/quoting/static.C.html b/dev/uu_ls/options/quoting/static.C.html
index 705de2c37..9ac4d9bbe 100644
--- a/dev/uu_ls/options/quoting/static.C.html
+++ b/dev/uu_ls/options/quoting/static.C.html
@@ -1 +1 @@
-C in uu_ls::options::quoting - Rust
\ No newline at end of file
+C in uu_ls::options::quoting - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/quoting/static.ESCAPE.html b/dev/uu_ls/options/quoting/static.ESCAPE.html
index f4ce1a005..5bee86597 100644
--- a/dev/uu_ls/options/quoting/static.ESCAPE.html
+++ b/dev/uu_ls/options/quoting/static.ESCAPE.html
@@ -1 +1 @@
-ESCAPE in uu_ls::options::quoting - Rust
\ No newline at end of file
+ESCAPE in uu_ls::options::quoting - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/quoting/static.LITERAL.html b/dev/uu_ls/options/quoting/static.LITERAL.html
index 13cf11b67..daaf9741f 100644
--- a/dev/uu_ls/options/quoting/static.LITERAL.html
+++ b/dev/uu_ls/options/quoting/static.LITERAL.html
@@ -1 +1 @@
-LITERAL in uu_ls::options::quoting - Rust
\ No newline at end of file
+LITERAL in uu_ls::options::quoting - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/size/index.html b/dev/uu_ls/options/size/index.html
index 723db6f1a..1b5e1ec09 100644
--- a/dev/uu_ls/options/size/index.html
+++ b/dev/uu_ls/options/size/index.html
@@ -1 +1 @@
-uu_ls::options::size - Rust
\ No newline at end of file
+uu_ls::options::size - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/size/static.ALLOCATION_SIZE.html b/dev/uu_ls/options/size/static.ALLOCATION_SIZE.html
index 79a95af16..0306f9e7f 100644
--- a/dev/uu_ls/options/size/static.ALLOCATION_SIZE.html
+++ b/dev/uu_ls/options/size/static.ALLOCATION_SIZE.html
@@ -1 +1 @@
-ALLOCATION_SIZE in uu_ls::options::size - Rust
\ No newline at end of file
+ALLOCATION_SIZE in uu_ls::options::size - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/size/static.BLOCK_SIZE.html b/dev/uu_ls/options/size/static.BLOCK_SIZE.html
index 0fb67a757..0d94e8121 100644
--- a/dev/uu_ls/options/size/static.BLOCK_SIZE.html
+++ b/dev/uu_ls/options/size/static.BLOCK_SIZE.html
@@ -1 +1 @@
-BLOCK_SIZE in uu_ls::options::size - Rust
\ No newline at end of file
+BLOCK_SIZE in uu_ls::options::size - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/size/static.HUMAN_READABLE.html b/dev/uu_ls/options/size/static.HUMAN_READABLE.html
index 94a7fff25..62ce51bb2 100644
--- a/dev/uu_ls/options/size/static.HUMAN_READABLE.html
+++ b/dev/uu_ls/options/size/static.HUMAN_READABLE.html
@@ -1 +1 @@
-HUMAN_READABLE in uu_ls::options::size - Rust
\ No newline at end of file
+HUMAN_READABLE in uu_ls::options::size - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/size/static.KIBIBYTES.html b/dev/uu_ls/options/size/static.KIBIBYTES.html
index c1608bacd..48745e396 100644
--- a/dev/uu_ls/options/size/static.KIBIBYTES.html
+++ b/dev/uu_ls/options/size/static.KIBIBYTES.html
@@ -1 +1 @@
-KIBIBYTES in uu_ls::options::size - Rust
\ No newline at end of file
+KIBIBYTES in uu_ls::options::size - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/size/static.SI.html b/dev/uu_ls/options/size/static.SI.html
index 022fc212c..2bec49542 100644
--- a/dev/uu_ls/options/size/static.SI.html
+++ b/dev/uu_ls/options/size/static.SI.html
@@ -1 +1 @@
-SI in uu_ls::options::size - Rust
\ No newline at end of file
+SI in uu_ls::options::size - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/sort/index.html b/dev/uu_ls/options/sort/index.html
index faef740fd..80acefc76 100644
--- a/dev/uu_ls/options/sort/index.html
+++ b/dev/uu_ls/options/sort/index.html
@@ -1 +1 @@
-uu_ls::options::sort - Rust
\ No newline at end of file
+uu_ls::options::sort - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/sort/static.EXTENSION.html b/dev/uu_ls/options/sort/static.EXTENSION.html
index 23ab74a6e..0b8a7b13d 100644
--- a/dev/uu_ls/options/sort/static.EXTENSION.html
+++ b/dev/uu_ls/options/sort/static.EXTENSION.html
@@ -1 +1 @@
-EXTENSION in uu_ls::options::sort - Rust
\ No newline at end of file
+EXTENSION in uu_ls::options::sort - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/sort/static.NONE.html b/dev/uu_ls/options/sort/static.NONE.html
index eaac2c05e..53b37e5e2 100644
--- a/dev/uu_ls/options/sort/static.NONE.html
+++ b/dev/uu_ls/options/sort/static.NONE.html
@@ -1 +1 @@
-NONE in uu_ls::options::sort - Rust
\ No newline at end of file
+NONE in uu_ls::options::sort - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/sort/static.SIZE.html b/dev/uu_ls/options/sort/static.SIZE.html
index fb2254130..2532a23da 100644
--- a/dev/uu_ls/options/sort/static.SIZE.html
+++ b/dev/uu_ls/options/sort/static.SIZE.html
@@ -1 +1 @@
-SIZE in uu_ls::options::sort - Rust
\ No newline at end of file
+SIZE in uu_ls::options::sort - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/sort/static.TIME.html b/dev/uu_ls/options/sort/static.TIME.html
index 474916494..00837897c 100644
--- a/dev/uu_ls/options/sort/static.TIME.html
+++ b/dev/uu_ls/options/sort/static.TIME.html
@@ -1 +1 @@
-TIME in uu_ls::options::sort - Rust
\ No newline at end of file
+TIME in uu_ls::options::sort - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/sort/static.VERSION.html b/dev/uu_ls/options/sort/static.VERSION.html
index 396d9925c..84874a711 100644
--- a/dev/uu_ls/options/sort/static.VERSION.html
+++ b/dev/uu_ls/options/sort/static.VERSION.html
@@ -1 +1 @@
-VERSION in uu_ls::options::sort - Rust
\ No newline at end of file
+VERSION in uu_ls::options::sort - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.AUTHOR.html b/dev/uu_ls/options/static.AUTHOR.html
index db9e85d4e..11745e4f7 100644
--- a/dev/uu_ls/options/static.AUTHOR.html
+++ b/dev/uu_ls/options/static.AUTHOR.html
@@ -1 +1 @@
-AUTHOR in uu_ls::options - Rust
\ No newline at end of file
+AUTHOR in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.COLOR.html b/dev/uu_ls/options/static.COLOR.html
index 9b4a740e6..4a6ea10e3 100644
--- a/dev/uu_ls/options/static.COLOR.html
+++ b/dev/uu_ls/options/static.COLOR.html
@@ -1 +1 @@
-COLOR in uu_ls::options - Rust
\ No newline at end of file
+COLOR in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.CONTEXT.html b/dev/uu_ls/options/static.CONTEXT.html
index 083493bac..2f40934aa 100644
--- a/dev/uu_ls/options/static.CONTEXT.html
+++ b/dev/uu_ls/options/static.CONTEXT.html
@@ -1 +1 @@
-CONTEXT in uu_ls::options - Rust
\ No newline at end of file
+CONTEXT in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.DIRECTORY.html b/dev/uu_ls/options/static.DIRECTORY.html
index f5b6219a8..0d175778e 100644
--- a/dev/uu_ls/options/static.DIRECTORY.html
+++ b/dev/uu_ls/options/static.DIRECTORY.html
@@ -1 +1 @@
-DIRECTORY in uu_ls::options - Rust
\ No newline at end of file
+DIRECTORY in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.DIRED.html b/dev/uu_ls/options/static.DIRED.html
index 937b43c84..0431082a8 100644
--- a/dev/uu_ls/options/static.DIRED.html
+++ b/dev/uu_ls/options/static.DIRED.html
@@ -1 +1 @@
-DIRED in uu_ls::options - Rust
\ No newline at end of file
+DIRED in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.FORMAT.html b/dev/uu_ls/options/static.FORMAT.html
index 642ac647b..5b8cbcf1e 100644
--- a/dev/uu_ls/options/static.FORMAT.html
+++ b/dev/uu_ls/options/static.FORMAT.html
@@ -1 +1 @@
-FORMAT in uu_ls::options - Rust
\ No newline at end of file
+FORMAT in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.FULL_TIME.html b/dev/uu_ls/options/static.FULL_TIME.html
index 8b3d12435..c5220660a 100644
--- a/dev/uu_ls/options/static.FULL_TIME.html
+++ b/dev/uu_ls/options/static.FULL_TIME.html
@@ -1 +1 @@
-FULL_TIME in uu_ls::options - Rust
\ No newline at end of file
+FULL_TIME in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.GROUP_DIRECTORIES_FIRST.html b/dev/uu_ls/options/static.GROUP_DIRECTORIES_FIRST.html
index a8764c301..b5c3f2290 100644
--- a/dev/uu_ls/options/static.GROUP_DIRECTORIES_FIRST.html
+++ b/dev/uu_ls/options/static.GROUP_DIRECTORIES_FIRST.html
@@ -1 +1 @@
-GROUP_DIRECTORIES_FIRST in uu_ls::options - Rust Static uu_ls::options::GROUP_DIRECTORIES_FIRST
source · pub static GROUP_DIRECTORIES_FIRST: &str
\ No newline at end of file
+GROUP_DIRECTORIES_FIRST in uu_ls::options - Rust Static uu_ls::options::GROUP_DIRECTORIES_FIRST
source · pub static GROUP_DIRECTORIES_FIRST: &str
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.HELP.html b/dev/uu_ls/options/static.HELP.html
index 3ee1df0f2..97ae12531 100644
--- a/dev/uu_ls/options/static.HELP.html
+++ b/dev/uu_ls/options/static.HELP.html
@@ -1 +1 @@
-HELP in uu_ls::options - Rust
\ No newline at end of file
+HELP in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.HIDE.html b/dev/uu_ls/options/static.HIDE.html
index 3ffec0628..bb758a0cb 100644
--- a/dev/uu_ls/options/static.HIDE.html
+++ b/dev/uu_ls/options/static.HIDE.html
@@ -1 +1 @@
-HIDE in uu_ls::options - Rust
\ No newline at end of file
+HIDE in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.HIDE_CONTROL_CHARS.html b/dev/uu_ls/options/static.HIDE_CONTROL_CHARS.html
index 35ae72325..e2fd3ce4d 100644
--- a/dev/uu_ls/options/static.HIDE_CONTROL_CHARS.html
+++ b/dev/uu_ls/options/static.HIDE_CONTROL_CHARS.html
@@ -1 +1 @@
-HIDE_CONTROL_CHARS in uu_ls::options - Rust Static uu_ls::options::HIDE_CONTROL_CHARS
source · pub static HIDE_CONTROL_CHARS: &str
\ No newline at end of file
+HIDE_CONTROL_CHARS in uu_ls::options - Rust Static uu_ls::options::HIDE_CONTROL_CHARS
source · pub static HIDE_CONTROL_CHARS: &str
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.IGNORE.html b/dev/uu_ls/options/static.IGNORE.html
index 0487a02d0..f9f4a1984 100644
--- a/dev/uu_ls/options/static.IGNORE.html
+++ b/dev/uu_ls/options/static.IGNORE.html
@@ -1 +1 @@
-IGNORE in uu_ls::options - Rust
\ No newline at end of file
+IGNORE in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.IGNORE_BACKUPS.html b/dev/uu_ls/options/static.IGNORE_BACKUPS.html
index 2405b3d20..c928cde9f 100644
--- a/dev/uu_ls/options/static.IGNORE_BACKUPS.html
+++ b/dev/uu_ls/options/static.IGNORE_BACKUPS.html
@@ -1 +1 @@
-IGNORE_BACKUPS in uu_ls::options - Rust Static uu_ls::options::IGNORE_BACKUPS
source · pub static IGNORE_BACKUPS: &str
\ No newline at end of file
+IGNORE_BACKUPS in uu_ls::options - Rust Static uu_ls::options::IGNORE_BACKUPS
source · pub static IGNORE_BACKUPS: &str
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.INDICATOR_STYLE.html b/dev/uu_ls/options/static.INDICATOR_STYLE.html
index 5df736346..97abff18c 100644
--- a/dev/uu_ls/options/static.INDICATOR_STYLE.html
+++ b/dev/uu_ls/options/static.INDICATOR_STYLE.html
@@ -1 +1 @@
-INDICATOR_STYLE in uu_ls::options - Rust Static uu_ls::options::INDICATOR_STYLE
source · pub static INDICATOR_STYLE: &str
\ No newline at end of file
+INDICATOR_STYLE in uu_ls::options - Rust Static uu_ls::options::INDICATOR_STYLE
source · pub static INDICATOR_STYLE: &str
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.INODE.html b/dev/uu_ls/options/static.INODE.html
index 88a6d543e..fd0aceb52 100644
--- a/dev/uu_ls/options/static.INODE.html
+++ b/dev/uu_ls/options/static.INODE.html
@@ -1 +1 @@
-INODE in uu_ls::options - Rust
\ No newline at end of file
+INODE in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.NO_GROUP.html b/dev/uu_ls/options/static.NO_GROUP.html
index 0696dd89c..0687ab62a 100644
--- a/dev/uu_ls/options/static.NO_GROUP.html
+++ b/dev/uu_ls/options/static.NO_GROUP.html
@@ -1 +1 @@
-NO_GROUP in uu_ls::options - Rust
\ No newline at end of file
+NO_GROUP in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.PATHS.html b/dev/uu_ls/options/static.PATHS.html
index f338c2370..38be8f42a 100644
--- a/dev/uu_ls/options/static.PATHS.html
+++ b/dev/uu_ls/options/static.PATHS.html
@@ -1 +1 @@
-PATHS in uu_ls::options - Rust
\ No newline at end of file
+PATHS in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.QUOTING_STYLE.html b/dev/uu_ls/options/static.QUOTING_STYLE.html
index 9a8ad5b90..c1d92de1b 100644
--- a/dev/uu_ls/options/static.QUOTING_STYLE.html
+++ b/dev/uu_ls/options/static.QUOTING_STYLE.html
@@ -1 +1 @@
-QUOTING_STYLE in uu_ls::options - Rust Static uu_ls::options::QUOTING_STYLE
source · pub static QUOTING_STYLE: &str
\ No newline at end of file
+QUOTING_STYLE in uu_ls::options - Rust Static uu_ls::options::QUOTING_STYLE
source · pub static QUOTING_STYLE: &str
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.RECURSIVE.html b/dev/uu_ls/options/static.RECURSIVE.html
index ef78c556c..1f1c6aeba 100644
--- a/dev/uu_ls/options/static.RECURSIVE.html
+++ b/dev/uu_ls/options/static.RECURSIVE.html
@@ -1 +1 @@
-RECURSIVE in uu_ls::options - Rust
\ No newline at end of file
+RECURSIVE in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.REVERSE.html b/dev/uu_ls/options/static.REVERSE.html
index 1edb9d246..5b89ab58b 100644
--- a/dev/uu_ls/options/static.REVERSE.html
+++ b/dev/uu_ls/options/static.REVERSE.html
@@ -1 +1 @@
-REVERSE in uu_ls::options - Rust
\ No newline at end of file
+REVERSE in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.SHOW_CONTROL_CHARS.html b/dev/uu_ls/options/static.SHOW_CONTROL_CHARS.html
index 41254e903..781d29c4c 100644
--- a/dev/uu_ls/options/static.SHOW_CONTROL_CHARS.html
+++ b/dev/uu_ls/options/static.SHOW_CONTROL_CHARS.html
@@ -1 +1 @@
-SHOW_CONTROL_CHARS in uu_ls::options - Rust Static uu_ls::options::SHOW_CONTROL_CHARS
source · pub static SHOW_CONTROL_CHARS: &str
\ No newline at end of file
+SHOW_CONTROL_CHARS in uu_ls::options - Rust Static uu_ls::options::SHOW_CONTROL_CHARS
source · pub static SHOW_CONTROL_CHARS: &str
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.SORT.html b/dev/uu_ls/options/static.SORT.html
index ea8644715..df1261023 100644
--- a/dev/uu_ls/options/static.SORT.html
+++ b/dev/uu_ls/options/static.SORT.html
@@ -1 +1 @@
-SORT in uu_ls::options - Rust
\ No newline at end of file
+SORT in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.TIME.html b/dev/uu_ls/options/static.TIME.html
index a322f53c8..2871d9423 100644
--- a/dev/uu_ls/options/static.TIME.html
+++ b/dev/uu_ls/options/static.TIME.html
@@ -1 +1 @@
-TIME in uu_ls::options - Rust
\ No newline at end of file
+TIME in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.TIME_STYLE.html b/dev/uu_ls/options/static.TIME_STYLE.html
index a261e0faf..d422f5b8e 100644
--- a/dev/uu_ls/options/static.TIME_STYLE.html
+++ b/dev/uu_ls/options/static.TIME_STYLE.html
@@ -1 +1 @@
-TIME_STYLE in uu_ls::options - Rust Static uu_ls::options::TIME_STYLE
source · pub static TIME_STYLE: &str
\ No newline at end of file
+TIME_STYLE in uu_ls::options - Rust Static uu_ls::options::TIME_STYLE
source · pub static TIME_STYLE: &str
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.WIDTH.html b/dev/uu_ls/options/static.WIDTH.html
index 09ca3775f..5cca0a00b 100644
--- a/dev/uu_ls/options/static.WIDTH.html
+++ b/dev/uu_ls/options/static.WIDTH.html
@@ -1 +1 @@
-WIDTH in uu_ls::options - Rust
\ No newline at end of file
+WIDTH in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/static.ZERO.html b/dev/uu_ls/options/static.ZERO.html
index 5393c6387..533099e21 100644
--- a/dev/uu_ls/options/static.ZERO.html
+++ b/dev/uu_ls/options/static.ZERO.html
@@ -1 +1 @@
-ZERO in uu_ls::options - Rust
\ No newline at end of file
+ZERO in uu_ls::options - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/time/index.html b/dev/uu_ls/options/time/index.html
index 3e00faa23..5a8a15da1 100644
--- a/dev/uu_ls/options/time/index.html
+++ b/dev/uu_ls/options/time/index.html
@@ -1 +1 @@
-uu_ls::options::time - Rust
\ No newline at end of file
+uu_ls::options::time - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/time/static.ACCESS.html b/dev/uu_ls/options/time/static.ACCESS.html
index fe72fda6e..df447605d 100644
--- a/dev/uu_ls/options/time/static.ACCESS.html
+++ b/dev/uu_ls/options/time/static.ACCESS.html
@@ -1 +1 @@
-ACCESS in uu_ls::options::time - Rust
\ No newline at end of file
+ACCESS in uu_ls::options::time - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/options/time/static.CHANGE.html b/dev/uu_ls/options/time/static.CHANGE.html
index 5182e1b38..86f587e3a 100644
--- a/dev/uu_ls/options/time/static.CHANGE.html
+++ b/dev/uu_ls/options/time/static.CHANGE.html
@@ -1 +1 @@
-CHANGE in uu_ls::options::time - Rust
\ No newline at end of file
+CHANGE in uu_ls::options::time - Rust
\ No newline at end of file
diff --git a/dev/uu_ls/struct.Config.html b/dev/uu_ls/struct.Config.html
index 92f1b1b45..bdff419c9 100644
--- a/dev/uu_ls/struct.Config.html
+++ b/dev/uu_ls/struct.Config.html
@@ -1,8 +1,8 @@
-Config in uu_ls - Rust pub struct Config {
+Config in uu_ls - Rust pub struct Config {
pub format: Format,
pub quoting_style: QuotingStyle,
/* private fields */
-}
Fields§
§format: Format§quoting_style: QuotingStyleImplementations§
Auto Trait Implementations§
§impl RefUnwindSafe for Config
§impl Send for Config
§impl Sync for Config
§impl Unpin for Config
§impl UnwindSafe for Config
Blanket Implementations§
source§impl<T> Any for Twhere
+}Fields§
§format: Format§quoting_style: QuotingStyleImplementations§
Auto Trait Implementations§
§impl RefUnwindSafe for Config
§impl Send for Config
§impl Sync for Config
§impl Unpin for Config
§impl UnwindSafe for Config
Blanket Implementations§