Skip to content

Instantly share code, notes, and snippets.

@kinggoesgaming
Created April 26, 2018 20:08
Show Gist options
  • Save kinggoesgaming/ba308b16761b642d3ad322b9316f9683 to your computer and use it in GitHub Desktop.
Save kinggoesgaming/ba308b16761b642d3ad322b9316f9683 to your computer and use it in GitHub Desktop.
error: unterminated block comment
--> src/adapter/core_support.rs:44:1
|
44 | / /*macro_rules! uuid_fmt {
45 | | ($owner:expr) => {
46 | |
47 | | for byte in &self.inner.bytes {
... |
132 | |
133 | |
| |_^
error: aborting due to previous error
error: Could not compile `uuid`.
To learn more, run the command again with --verbose.
developer@asus-ubuntu-hunar:~/src/uuid$ cargo build
Compiling uuid v0.6.3 (file:///home/developer/src/uuid)
error[E0053]: method `deref` has an incompatible type for trait
--> src/adapter/core_support.rs:39:5
|
39 | / fn deref(&self) -> Self::Target {
40 | | self.inner
41 | | }
| |_____^ expected &Uuid, found struct `Uuid`
|
= note: expected type `fn(&adapter::UuidHyphenated) -> &Uuid`
found type `fn(&adapter::UuidHyphenated) -> Uuid`
error: aborting due to previous error
error: Could not compile `uuid`.
To learn more, run the command again with --verbose.
developer@asus-ubuntu-hunar:~/src/uuid$ cargo build
Compiling uuid v0.6.3 (file:///home/developer/src/uuid)
error[E0308]: mismatched types
--> src/adapter/core_support.rs:40:9
|
40 | self.inner
| ^^^^^^^^^^ expected &Uuid, found struct `Uuid`
|
= note: expected type `&Uuid`
found type `Uuid`
error: aborting due to previous error
error: Could not compile `uuid`.
To learn more, run the command again with --verbose.
developer@asus-ubuntu-hunar:~/src/uuid$ cargo build
Compiling uuid v0.6.3 (file:///home/developer/src/uuid)
Finished dev [unoptimized + debuginfo] target(s) in 1.67 secs
developer@asus-ubuntu-hunar:~/src/uuid$ cargo --version --verbose
cargo 0.19.0 (28d1d60d4 2017-05-16)
release: 0.19.0
commit-hash: 28d1d60d4b634b70d7ceb0808144f2337c83ab95
commit-date: 2017-05-16
developer@asus-ubuntu-hunar:~/src/uuid$ cargo --version
cargo 0.19.0 (28d1d60d4 2017-05-16)
developer@asus-ubuntu-hunar:~/src/uuid$ cargo rustc --version
error: Unknown flag: '--version'
Usage:
cargo rustc [options] [--] [<opts>...]
developer@asus-ubuntu-hunar:~/src/uuid$ cargo --version --verbose
cargo 0.19.0 (28d1d60d4 2017-05-16)
release: 0.19.0
commit-hash: 28d1d60d4b634b70d7ceb0808144f2337c83ab95
commit-date: 2017-05-16
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 build
Finished dev [unoptimized + debuginfo] target(s) in 0.0 secs
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 build
Compiling uuid v0.6.3 (file:///home/developer/src/uuid)
Finished dev [unoptimized + debuginfo] target(s) in 0.42 secs
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 build
Compiling uuid v0.6.3 (file:///home/developer/src/uuid)
error[E0308]: method not compatible with trait
--> src/adapter/core_support.rs:49:13
|
49 | / fn deref(&self) -> &'a Self::Target {
50 | | &self.inner
51 | | }
| |_____________^ lifetime mismatch
...
56 | deref_uuid!(adapter::UuidHyphenated, adapter::UuidHyphenatedRef<'a>);
| --------------------------------------------------------------------- in this macro invocation
|
= note: expected type `fn(&adapter::UuidHyphenatedRef<'a>) -> &Uuid`
found type `fn(&adapter::UuidHyphenatedRef<'a>) -> &'a Uuid`
note: the lifetime 'a as defined on the body at 49:48...
--> src/adapter/core_support.rs:49:49
|
49 | fn deref(&self) -> &'a Self::Target {
| _________________________________________________^
50 | | &self.inner
51 | | }
| |_____________^
...
56 | deref_uuid!(adapter::UuidHyphenated, adapter::UuidHyphenatedRef<'a>);
| --------------------------------------------------------------------- in this macro invocation
note: ...does not necessarily outlive the anonymous lifetime #1 defined on the body at 49:48
--> src/adapter/core_support.rs:49:49
|
49 | fn deref(&self) -> &'a Self::Target {
| _________________________________________________^
50 | | &self.inner
51 | | }
| |_____________^
...
56 | deref_uuid!(adapter::UuidHyphenated, adapter::UuidHyphenatedRef<'a>);
| --------------------------------------------------------------------- in this macro invocation
error: aborting due to previous error
error: Could not compile `uuid`.
To learn more, run the command again with --verbose.
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 build
Compiling uuid v0.6.3 (file:///home/developer/src/uuid)
error: expected `:`, found `self`
--> src/adapter/core_support.rs:50:21
|
50 | &'a self.inner
| ^^^^
error: aborting due to previous error
error: Could not compile `uuid`.
To learn more, run the command again with --verbose.
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 build
Compiling uuid v0.6.3 (file:///home/developer/src/uuid)
error: expected `:`, found `self`
--> src/adapter/core_support.rs:50:21
|
50 | &'a self.inner
| ^^^^
error: aborting due to previous error
error: Could not compile `uuid`.
To learn more, run the command again with --verbose.
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 build
Compiling uuid v0.6.3 (file:///home/developer/src/uuid)
error[E0308]: method not compatible with trait
--> src/adapter/core_support.rs:49:13
|
49 | / fn deref(&'a self) -> &'a Self::Target {
50 | | &self.inner
51 | | }
| |_____________^ lifetime mismatch
...
56 | deref_uuid!(adapter::UuidHyphenated, adapter::UuidHyphenatedRef<'a>);
| --------------------------------------------------------------------- in this macro invocation
|
= note: expected type `fn(&adapter::UuidHyphenatedRef<'a>) -> &Uuid`
found type `fn(&'a adapter::UuidHyphenatedRef<'a>) -> &'a Uuid`
note: the anonymous lifetime #1 defined on the body at 49:51...
--> src/adapter/core_support.rs:49:52
|
49 | fn deref(&'a self) -> &'a Self::Target {
| ____________________________________________________^
50 | | &self.inner
51 | | }
| |_____________^
...
56 | deref_uuid!(adapter::UuidHyphenated, adapter::UuidHyphenatedRef<'a>);
| --------------------------------------------------------------------- in this macro invocation
note: ...does not necessarily outlive the lifetime 'a as defined on the body at 49:51
--> src/adapter/core_support.rs:49:52
|
49 | fn deref(&'a self) -> &'a Self::Target {
| ____________________________________________________^
50 | | &self.inner
51 | | }
| |_____________^
...
56 | deref_uuid!(adapter::UuidHyphenated, adapter::UuidHyphenatedRef<'a>);
| --------------------------------------------------------------------- in this macro invocation
error[E0308]: method not compatible with trait
--> src/adapter/core_support.rs:49:13
|
49 | / fn deref(&'a self) -> &'a Self::Target {
50 | | &self.inner
51 | | }
| |_____________^ lifetime mismatch
...
56 | deref_uuid!(adapter::UuidHyphenated, adapter::UuidHyphenatedRef<'a>);
| --------------------------------------------------------------------- in this macro invocation
|
= note: expected type `fn(&adapter::UuidHyphenatedRef<'a>) -> &Uuid`
found type `fn(&'a adapter::UuidHyphenatedRef<'a>) -> &'a Uuid`
note: the lifetime 'a as defined on the body at 49:51...
--> src/adapter/core_support.rs:49:52
|
49 | fn deref(&'a self) -> &'a Self::Target {
| ____________________________________________________^
50 | | &self.inner
51 | | }
| |_____________^
...
56 | deref_uuid!(adapter::UuidHyphenated, adapter::UuidHyphenatedRef<'a>);
| --------------------------------------------------------------------- in this macro invocation
note: ...does not necessarily outlive the anonymous lifetime #1 defined on the body at 49:51
--> src/adapter/core_support.rs:49:52
|
49 | fn deref(&'a self) -> &'a Self::Target {
| ____________________________________________________^
50 | | &self.inner
51 | | }
| |_____________^
...
56 | deref_uuid!(adapter::UuidHyphenated, adapter::UuidHyphenatedRef<'a>);
| --------------------------------------------------------------------- in this macro invocation
error: aborting due to 2 previous errors
error: Could not compile `uuid`.
To learn more, run the command again with --verbose.
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 build
Compiling uuid v0.6.3 (file:///home/developer/src/uuid)
error[E0308]: method not compatible with trait
--> src/adapter/core_support.rs:49:13
|
49 | / fn deref(&self) -> &'a Self::Target {
50 | | &self.inner
51 | | }
| |_____________^ lifetime mismatch
...
56 | deref_uuid!(adapter::UuidHyphenated, adapter::UuidHyphenatedRef<'a>);
| --------------------------------------------------------------------- in this macro invocation
|
= note: expected type `fn(&adapter::UuidHyphenatedRef<'a>) -> &Uuid`
found type `fn(&adapter::UuidHyphenatedRef<'a>) -> &'a Uuid`
note: the lifetime 'a as defined on the body at 49:48...
--> src/adapter/core_support.rs:49:49
|
49 | fn deref(&self) -> &'a Self::Target {
| _________________________________________________^
50 | | &self.inner
51 | | }
| |_____________^
...
56 | deref_uuid!(adapter::UuidHyphenated, adapter::UuidHyphenatedRef<'a>);
| --------------------------------------------------------------------- in this macro invocation
note: ...does not necessarily outlive the anonymous lifetime #1 defined on the body at 49:48
--> src/adapter/core_support.rs:49:49
|
49 | fn deref(&self) -> &'a Self::Target {
| _________________________________________________^
50 | | &self.inner
51 | | }
| |_____________^
...
56 | deref_uuid!(adapter::UuidHyphenated, adapter::UuidHyphenatedRef<'a>);
| --------------------------------------------------------------------- in this macro invocation
error: aborting due to previous error
error: Could not compile `uuid`.
To learn more, run the command again with --verbose.
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 build
Compiling uuid v0.6.3 (file:///home/developer/src/uuid)
Finished dev [unoptimized + debuginfo] target(s) in 0.41 secs
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 build
Compiling uuid v0.6.3 (file:///home/developer/src/uuid)
error[E0412]: cannot find type `UuidsimpleRef` in module `adapter`
--> src/adapter/core_support.rs:57:43
|
57 | deref_uuid!(adapter::UuidSimple, adapter::UuidsimpleRef<'a>);
| ^^^^^^^^^^^^^ did you mean `UuidSimpleRef`?
error: aborting due to previous error
error: Could not compile `uuid`.
To learn more, run the command again with --verbose.
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 build
Compiling uuid v0.6.3 (file:///home/developer/src/uuid)
Finished dev [unoptimized + debuginfo] target(s) in 0.41 secs
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 doc
Documenting uuid v0.6.3 (file:///home/developer/src/uuid)
Finished dev [unoptimized + debuginfo] target(s) in 1.15 secs
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 doc
Documenting uuid v0.6.3 (file:///home/developer/src/uuid)
error: invalid format string: expected `'}'` but string was terminated
--> src/adapter/core_support.rs:74:13
|
74 | simple_fmt!("{:02x", fmt::LowerHex);
| ^^^^^^^
|
= note: if you intended to print `{`, you can escape it using `{{`
error: aborting due to previous error
error: Could not document `uuid`.
To learn more, run the command again with --verbose.
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 doc
Documenting uuid v0.6.3 (file:///home/developer/src/uuid)
error[E0308]: mismatched types
--> src/adapter/core_support.rs:74:1
|
74 | simple_fmt!("{:02x}", fmt::LowerHex);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| |
| in this macro invocation
| expected (), found enum `std::result::Result`
|
= note: expected type `()`
found type `std::result::Result<(), std::fmt::Error>`
= note: this error originates in a macro outside of the current crate
error[E0308]: mismatched types
--> src/adapter/core_support.rs:66:17
|
66 | / for byte in &self.inner.bytes {
67 | | write!(f, $format, byte)
68 | | }
| |_________________^ expected enum `std::result::Result`, found ()
...
74 | simple_fmt!("{:02x}", fmt::LowerHex);
| ------------------------------------- in this macro invocation
|
= note: expected type `std::result::Result<(), std::fmt::Error>`
found type `()`
error: Compilation failed, aborting rustdoc
error: Could not document `uuid`.
To learn more, run the command again with --verbose.
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 doc
Documenting uuid v0.6.3 (file:///home/developer/src/uuid)
Finished dev [unoptimized + debuginfo] target(s) in 2.12 secs
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 doc
Documenting uuid v0.6.3 (file:///home/developer/src/uuid)
Finished dev [unoptimized + debuginfo] target(s) in 0.42 secs
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 doc
Documenting uuid v0.6.3 (file:///home/developer/src/uuid)
Finished dev [unoptimized + debuginfo] target(s) in 0.42 secs
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +nightly fmt
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 doc
Documenting uuid v0.6.3 (file:///home/developer/src/uuid)
error[E0412]: cannot find type `SimpleRef` in module `adapter`
--> src/adapter/core_support.rs:120:44
|
120 | display_fmt!(adapter::UuidSimple, adapter::SimpleRef<'a>);
| ^^^^^^^^^ not found in `adapter`
error: Compilation failed, aborting rustdoc
error: Could not document `uuid`.
To learn more, run the command again with --verbose.
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 doc
Documenting uuid v0.6.3 (file:///home/developer/src/uuid)
Finished dev [unoptimized + debuginfo] target(s) in 0.41 secs
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +nightly fmt
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +nightly fmt
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +nightly fmt
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +nightly fmt
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +nightly fmt
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +nightly fmt
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +nightly fmt
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +nightly fmt
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 doc
Documenting uuid v0.6.3 (file:///home/developer/src/uuid)
error: unknown macro variable `f`
--> src/adapter/core_support.rs:116:21
|
116 | $f,
| ^^
...
141 | / uuid_fmt!(
142 | | "{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
143 | | fmt::UpperHex,
144 | | adapter::UuidHyphenated,
145 | | adapter::UuidHyphenatedRef<'a>
146 | | );
| |__- in this macro invocation
error: unknown macro variable `f`
--> src/adapter/core_support.rs:116:21
|
116 | $f,
| ^^
...
141 | / uuid_fmt!(
142 | | "{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
143 | | fmt::UpperHex,
144 | | adapter::UuidHyphenated,
145 | | adapter::UuidHyphenatedRef<'a>
146 | | );
| |__- in this macro invocation
error: expected expression, found `$f`
--> src/adapter/core_support.rs:116:21
|
116 | $f,
| ^^
...
141 | / uuid_fmt!(
142 | | "{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
143 | | fmt::UpperHex,
144 | | adapter::UuidHyphenated,
145 | | adapter::UuidHyphenatedRef<'a>
146 | | );
| |__- in this macro invocation
error: Could not document `uuid`.
To learn more, run the command again with --verbose.
developer@asus-ubuntu-hunar:~/src/uuid$ cargo +1.18.0 doc
Documenting uuid v0.6.3 (file:///home/developer/src/uuid)
error: invalid reference to argument `1` (there is 1 argument)
--> src/adapter/core_support.rs:142:5
|
142 | "{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `2` (there is 1 argument)
--> src/adapter/core_support.rs:142:5
|
142 | "{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `3` (there is 1 argument)
--> src/adapter/core_support.rs:142:5
|
142 | "{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `4` (there is 1 argument)
--> src/adapter/core_support.rs:142:5
|
142 | "{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `5` (there is 1 argument)
--> src/adapter/core_support.rs:142:5
|
142 | "{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `6` (there is 1 argument)
--> src/adapter/core_support.rs:142:5
|
142 | "{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `7` (there is 1 argument)
--> src/adapter/core_support.rs:142:5
|
142 | "{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `8` (there is 1 argument)
--> src/adapter/core_support.rs:142:5
|
142 | "{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `9` (there is 1 argument)
--> src/adapter/core_support.rs:142:5
|
142 | "{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `10` (there is 1 argument)
--> src/adapter/core_support.rs:142:5
|
142 | "{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `1` (there is 1 argument)
--> src/adapter/core_support.rs:149:5
|
149 | "{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `2` (there is 1 argument)
--> src/adapter/core_support.rs:149:5
|
149 | "{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `3` (there is 1 argument)
--> src/adapter/core_support.rs:149:5
|
149 | "{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `4` (there is 1 argument)
--> src/adapter/core_support.rs:149:5
|
149 | "{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `5` (there is 1 argument)
--> src/adapter/core_support.rs:149:5
|
149 | "{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `6` (there is 1 argument)
--> src/adapter/core_support.rs:149:5
|
149 | "{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `7` (there is 1 argument)
--> src/adapter/core_support.rs:149:5
|
149 | "{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `8` (there is 1 argument)
--> src/adapter/core_support.rs:149:5
|
149 | "{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `9` (there is 1 argument)
--> src/adapter/core_support.rs:149:5
|
149 | "{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `10` (there is 1 argument)
--> src/adapter/core_support.rs:149:5
|
149 | "{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `1` (there is 1 argument)
--> src/adapter/core_support.rs:156:5
|
156 | "urn:uuid:{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `2` (there is 1 argument)
--> src/adapter/core_support.rs:156:5
|
156 | "urn:uuid:{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `3` (there is 1 argument)
--> src/adapter/core_support.rs:156:5
|
156 | "urn:uuid:{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `4` (there is 1 argument)
--> src/adapter/core_support.rs:156:5
|
156 | "urn:uuid:{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `5` (there is 1 argument)
--> src/adapter/core_support.rs:156:5
|
156 | "urn:uuid:{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `6` (there is 1 argument)
--> src/adapter/core_support.rs:156:5
|
156 | "urn:uuid:{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `7` (there is 1 argument)
--> src/adapter/core_support.rs:156:5
|
156 | "urn:uuid:{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `8` (there is 1 argument)
--> src/adapter/core_support.rs:156:5
|
156 | "urn:uuid:{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `9` (there is 1 argument)
--> src/adapter/core_support.rs:156:5
|
156 | "urn:uuid:{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `10` (there is 1 argument)
--> src/adapter/core_support.rs:156:5
|
156 | "urn:uuid:{:08X}-{:04X}-{:04X}-{:02X}{:02X}-{:02X}{:02X}{:02X}{:02X}{:02X}{:02X}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `1` (there is 1 argument)
--> src/adapter/core_support.rs:163:5
|
163 | "urn:uuid:{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `2` (there is 1 argument)
--> src/adapter/core_support.rs:163:5
|
163 | "urn:uuid:{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `3` (there is 1 argument)
--> src/adapter/core_support.rs:163:5
|
163 | "urn:uuid:{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `4` (there is 1 argument)
--> src/adapter/core_support.rs:163:5
|
163 | "urn:uuid:{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `5` (there is 1 argument)
--> src/adapter/core_support.rs:163:5
|
163 | "urn:uuid:{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `6` (there is 1 argument)
--> src/adapter/core_support.rs:163:5
|
163 | "urn:uuid:{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `7` (there is 1 argument)
--> src/adapter/core_support.rs:163:5
|
163 | "urn:uuid:{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `8` (there is 1 argument)
--> src/adapter/core_support.rs:163:5
|
163 | "urn:uuid:{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `9` (there is 1 argument)
--> src/adapter/core_support.rs:163:5
|
163 | "urn:uuid:{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: invalid reference to argument `10` (there is 1 argument)
--> src/adapter/core_support.rs:163:5
|
163 | "urn:uuid:{:08x}-{:04x}-{:04x}-{:02x}{:02x}-{:02x}{:02x}{:02x}{:02x}{:02x}{:02x}",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 40 previous errors
error: Could not document `uuid`.
To learn more, run the command again with --verbose.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment