[INFO] fetching crate rutin_dashmap 0.1.0... [INFO] checking rutin_dashmap-0.1.0 against try#7b3da9103634dffd4f4365cfd8642427c781d99f+rustflags=-Dinherent-method-on-receiver for 152214-denied [INFO] extracting crate rutin_dashmap 0.1.0 into /workspace/builds/worker-4-tc2/source [INFO] started tweaking crates.io crate rutin_dashmap 0.1.0 [INFO] finished tweaking crates.io crate rutin_dashmap 0.1.0 [INFO] tweaked toml for crates.io crate rutin_dashmap 0.1.0 written to /workspace/builds/worker-4-tc2/source/Cargo.toml [INFO] validating manifest of crates.io crate rutin_dashmap 0.1.0 on toolchain 7b3da9103634dffd4f4365cfd8642427c781d99f [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+7b3da9103634dffd4f4365cfd8642427c781d99f" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] crate crates.io crate rutin_dashmap 0.1.0 already has a lockfile, it will not be regenerated [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+7b3da9103634dffd4f4365cfd8642427c781d99f" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:61361fe0aef631f17e9d025a70c5a647956f8c671dd02950a60ad3f5cc5526d7" "/opt/rustwide/cargo-home/bin/cargo" "+7b3da9103634dffd4f4365cfd8642427c781d99f" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 8ef7bc1366b6d047b80e58e6d318ba5f746dbe59efa739012604002b4899111b [INFO] running `Command { std: "docker" "start" "-a" "8ef7bc1366b6d047b80e58e6d318ba5f746dbe59efa739012604002b4899111b", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "8ef7bc1366b6d047b80e58e6d318ba5f746dbe59efa739012604002b4899111b", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "8ef7bc1366b6d047b80e58e6d318ba5f746dbe59efa739012604002b4899111b", kill_on_drop: false }` [INFO] [stdout] 8ef7bc1366b6d047b80e58e6d318ba5f746dbe59efa739012604002b4899111b [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid -Dinherent-method-on-receiver" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:61361fe0aef631f17e9d025a70c5a647956f8c671dd02950a60ad3f5cc5526d7" "/opt/rustwide/cargo-home/bin/cargo" "+7b3da9103634dffd4f4365cfd8642427c781d99f" "check" "--frozen" "--all" "--all-targets" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 834b469279720d6e70189dbdee53cc376d10918572a8246de54e7bab1a0f906f [INFO] running `Command { std: "docker" "start" "-a" "834b469279720d6e70189dbdee53cc376d10918572a8246de54e7bab1a0f906f", kill_on_drop: false }` [INFO] [stderr] Compiling libc v0.2.168 [INFO] [stderr] Checking parking_lot_core v0.9.10 [INFO] [stderr] Checking rutin_dashmap v0.1.0 (/opt/rustwide/workdir) [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:29:16 [INFO] [stdout] | [INFO] [stdout] 29 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 42 | impl<'a, K: Eq + Hash, V> Deref for RefMulti<'a, K, V> { [INFO] [stdout] | ------------------------------------------------------ trait implemented here [INFO] [stdout] 43 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] | [INFO] [stdout] = note: requested on the command line with `-D inherent-method-on-receiver` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:33:18 [INFO] [stdout] | [INFO] [stdout] 33 | pub fn value(&self) -> &V { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 42 | impl<'a, K: Eq + Hash, V> Deref for RefMulti<'a, K, V> { [INFO] [stdout] | ------------------------------------------------------ trait implemented here [INFO] [stdout] 43 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:37:17 [INFO] [stdout] | [INFO] [stdout] 37 | pub fn pair(&self) -> (&K, &V) { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 42 | impl<'a, K: Eq + Hash, V> Deref for RefMulti<'a, K, V> { [INFO] [stdout] | ------------------------------------------------------ trait implemented here [INFO] [stdout] 43 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:72:16 [INFO] [stdout] | [INFO] [stdout] 72 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 93 | impl<'a, K: Eq + Hash, V> Deref for RefMutMulti<'a, K, V> { [INFO] [stdout] | --------------------------------------------------------- trait implemented here [INFO] [stdout] 94 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:76:18 [INFO] [stdout] | [INFO] [stdout] 76 | pub fn value(&self) -> &V { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 93 | impl<'a, K: Eq + Hash, V> Deref for RefMutMulti<'a, K, V> { [INFO] [stdout] | --------------------------------------------------------- trait implemented here [INFO] [stdout] 94 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:80:22 [INFO] [stdout] | [INFO] [stdout] 80 | pub fn value_mut(&mut self) -> &mut V { [INFO] [stdout] | ^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 93 | impl<'a, K: Eq + Hash, V> Deref for RefMutMulti<'a, K, V> { [INFO] [stdout] | --------------------------------------------------------- trait implemented here [INFO] [stdout] 94 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:84:17 [INFO] [stdout] | [INFO] [stdout] 84 | pub fn pair(&self) -> (&K, &V) { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 93 | impl<'a, K: Eq + Hash, V> Deref for RefMutMulti<'a, K, V> { [INFO] [stdout] | --------------------------------------------------------- trait implemented here [INFO] [stdout] 94 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:88:21 [INFO] [stdout] | [INFO] [stdout] 88 | pub fn pair_mut(&mut self) -> (&K, &mut V) { [INFO] [stdout] | ^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 93 | impl<'a, K: Eq + Hash, V> Deref for RefMutMulti<'a, K, V> { [INFO] [stdout] | --------------------------------------------------------- trait implemented here [INFO] [stdout] 94 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:29:16 [INFO] [stdout] | [INFO] [stdout] 29 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 77 | impl<'a, K: Eq + Hash, V> Deref for Ref<'a, K, V> { [INFO] [stdout] | ------------------------------------------------- trait implemented here [INFO] [stdout] 78 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:33:18 [INFO] [stdout] | [INFO] [stdout] 33 | pub fn value(&self) -> &V { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 77 | impl<'a, K: Eq + Hash, V> Deref for Ref<'a, K, V> { [INFO] [stdout] | ------------------------------------------------- trait implemented here [INFO] [stdout] 78 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:37:17 [INFO] [stdout] | [INFO] [stdout] 37 | pub fn pair(&self) -> (&K, &V) { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 77 | impl<'a, K: Eq + Hash, V> Deref for Ref<'a, K, V> { [INFO] [stdout] | ------------------------------------------------- trait implemented here [INFO] [stdout] 78 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:41:22 [INFO] [stdout] | [INFO] [stdout] 41 | pub fn map(self, f: F) -> MappedRef<'a, K, V, T> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 77 | impl<'a, K: Eq + Hash, V> Deref for Ref<'a, K, V> { [INFO] [stdout] | ------------------------------------------------- trait implemented here [INFO] [stdout] 78 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:52:26 [INFO] [stdout] | [INFO] [stdout] 52 | pub fn try_map(self, f: F) -> Result, Self> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 77 | impl<'a, K: Eq + Hash, V> Deref for Ref<'a, K, V> { [INFO] [stdout] | ------------------------------------------------- trait implemented here [INFO] [stdout] 78 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:103:16 [INFO] [stdout] | [INFO] [stdout] 103 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:107:18 [INFO] [stdout] | [INFO] [stdout] 107 | pub fn value(&self) -> &V { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:111:22 [INFO] [stdout] | [INFO] [stdout] 111 | pub fn value_mut(&mut self) -> &mut V { [INFO] [stdout] | ^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:115:17 [INFO] [stdout] | [INFO] [stdout] 115 | pub fn pair(&self) -> (&K, &V) { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:119:21 [INFO] [stdout] | [INFO] [stdout] 119 | pub fn pair_mut(&mut self) -> (&K, &mut V) { [INFO] [stdout] | ^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:123:22 [INFO] [stdout] | [INFO] [stdout] 123 | pub fn downgrade(self) -> Ref<'a, K, V> { [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:127:22 [INFO] [stdout] | [INFO] [stdout] 127 | pub fn map(self, f: F) -> MappedRefMut<'a, K, V, T> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:138:26 [INFO] [stdout] | [INFO] [stdout] 138 | pub fn try_map(self, f: F) -> Result, Self> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:186:16 [INFO] [stdout] | [INFO] [stdout] 186 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 235 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRef<'a, K, V, T> { [INFO] [stdout] | ------------------------------------------------------------- trait implemented here [INFO] [stdout] 236 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:190:18 [INFO] [stdout] | [INFO] [stdout] 190 | pub fn value(&self) -> &T { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 235 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRef<'a, K, V, T> { [INFO] [stdout] | ------------------------------------------------------------- trait implemented here [INFO] [stdout] 236 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:194:17 [INFO] [stdout] | [INFO] [stdout] 194 | pub fn pair(&self) -> (&K, &T) { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 235 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRef<'a, K, V, T> { [INFO] [stdout] | ------------------------------------------------------------- trait implemented here [INFO] [stdout] 236 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:198:23 [INFO] [stdout] | [INFO] [stdout] 198 | pub fn map(self, f: F) -> MappedRef<'a, K, V, T2> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 235 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRef<'a, K, V, T> { [INFO] [stdout] | ------------------------------------------------------------- trait implemented here [INFO] [stdout] 236 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:209:27 [INFO] [stdout] | [INFO] [stdout] 209 | pub fn try_map(self, f: F) -> Result, Self> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 235 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRef<'a, K, V, T> { [INFO] [stdout] | ------------------------------------------------------------- trait implemented here [INFO] [stdout] 236 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:264:16 [INFO] [stdout] | [INFO] [stdout] 264 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 322 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRefMut<'a, K, V, T> { [INFO] [stdout] | ---------------------------------------------------------------- trait implemented here [INFO] [stdout] 323 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:268:18 [INFO] [stdout] | [INFO] [stdout] 268 | pub fn value(&self) -> &T { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 322 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRefMut<'a, K, V, T> { [INFO] [stdout] | ---------------------------------------------------------------- trait implemented here [INFO] [stdout] 323 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:272:22 [INFO] [stdout] | [INFO] [stdout] 272 | pub fn value_mut(&mut self) -> &mut T { [INFO] [stdout] | ^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 322 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRefMut<'a, K, V, T> { [INFO] [stdout] | ---------------------------------------------------------------- trait implemented here [INFO] [stdout] 323 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:276:17 [INFO] [stdout] | [INFO] [stdout] 276 | pub fn pair(&self) -> (&K, &T) { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 322 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRefMut<'a, K, V, T> { [INFO] [stdout] | ---------------------------------------------------------------- trait implemented here [INFO] [stdout] 323 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:280:21 [INFO] [stdout] | [INFO] [stdout] 280 | pub fn pair_mut(&mut self) -> (&K, &mut T) { [INFO] [stdout] | ^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 322 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRefMut<'a, K, V, T> { [INFO] [stdout] | ---------------------------------------------------------------- trait implemented here [INFO] [stdout] 323 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:284:23 [INFO] [stdout] | [INFO] [stdout] 284 | pub fn map(self, f: F) -> MappedRefMut<'a, K, V, T2> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 322 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRefMut<'a, K, V, T> { [INFO] [stdout] | ---------------------------------------------------------------- trait implemented here [INFO] [stdout] 323 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:295:27 [INFO] [stdout] | [INFO] [stdout] 295 | pub fn try_map(self, f: F) -> Result, Self> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 322 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRefMut<'a, K, V, T> { [INFO] [stdout] | ---------------------------------------------------------------- trait implemented here [INFO] [stdout] 323 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/setref/multiple.rs:14:16 [INFO] [stdout] | [INFO] [stdout] 14 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 19 | impl<'a, K: Eq + Hash> Deref for RefMulti<'a, K> { [INFO] [stdout] | ------------------------------------------------ trait implemented here [INFO] [stdout] 20 | type Target = K; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/setref/one.rs:14:16 [INFO] [stdout] | [INFO] [stdout] 14 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 19 | impl<'a, K: Eq + Hash> Deref for Ref<'a, K> { [INFO] [stdout] | ------------------------------------------- trait implemented here [INFO] [stdout] 20 | type Target = K; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] error: could not compile `rutin_dashmap` (lib test) due to 35 previous errors [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:29:16 [INFO] [stdout] | [INFO] [stdout] 29 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 42 | impl<'a, K: Eq + Hash, V> Deref for RefMulti<'a, K, V> { [INFO] [stdout] | ------------------------------------------------------ trait implemented here [INFO] [stdout] 43 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] | [INFO] [stdout] = note: requested on the command line with `-D inherent-method-on-receiver` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:33:18 [INFO] [stdout] | [INFO] [stdout] 33 | pub fn value(&self) -> &V { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 42 | impl<'a, K: Eq + Hash, V> Deref for RefMulti<'a, K, V> { [INFO] [stdout] | ------------------------------------------------------ trait implemented here [INFO] [stdout] 43 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:37:17 [INFO] [stdout] | [INFO] [stdout] 37 | pub fn pair(&self) -> (&K, &V) { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 42 | impl<'a, K: Eq + Hash, V> Deref for RefMulti<'a, K, V> { [INFO] [stdout] | ------------------------------------------------------ trait implemented here [INFO] [stdout] 43 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:72:16 [INFO] [stdout] | [INFO] [stdout] 72 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 93 | impl<'a, K: Eq + Hash, V> Deref for RefMutMulti<'a, K, V> { [INFO] [stdout] | --------------------------------------------------------- trait implemented here [INFO] [stdout] 94 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:76:18 [INFO] [stdout] | [INFO] [stdout] 76 | pub fn value(&self) -> &V { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 93 | impl<'a, K: Eq + Hash, V> Deref for RefMutMulti<'a, K, V> { [INFO] [stdout] | --------------------------------------------------------- trait implemented here [INFO] [stdout] 94 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:80:22 [INFO] [stdout] | [INFO] [stdout] 80 | pub fn value_mut(&mut self) -> &mut V { [INFO] [stdout] | ^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 93 | impl<'a, K: Eq + Hash, V> Deref for RefMutMulti<'a, K, V> { [INFO] [stdout] | --------------------------------------------------------- trait implemented here [INFO] [stdout] 94 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:84:17 [INFO] [stdout] | [INFO] [stdout] 84 | pub fn pair(&self) -> (&K, &V) { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 93 | impl<'a, K: Eq + Hash, V> Deref for RefMutMulti<'a, K, V> { [INFO] [stdout] | --------------------------------------------------------- trait implemented here [INFO] [stdout] 94 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/multiple.rs:88:21 [INFO] [stdout] | [INFO] [stdout] 88 | pub fn pair_mut(&mut self) -> (&K, &mut V) { [INFO] [stdout] | ^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 93 | impl<'a, K: Eq + Hash, V> Deref for RefMutMulti<'a, K, V> { [INFO] [stdout] | --------------------------------------------------------- trait implemented here [INFO] [stdout] 94 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:29:16 [INFO] [stdout] | [INFO] [stdout] 29 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 77 | impl<'a, K: Eq + Hash, V> Deref for Ref<'a, K, V> { [INFO] [stdout] | ------------------------------------------------- trait implemented here [INFO] [stdout] 78 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:33:18 [INFO] [stdout] | [INFO] [stdout] 33 | pub fn value(&self) -> &V { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 77 | impl<'a, K: Eq + Hash, V> Deref for Ref<'a, K, V> { [INFO] [stdout] | ------------------------------------------------- trait implemented here [INFO] [stdout] 78 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:37:17 [INFO] [stdout] | [INFO] [stdout] 37 | pub fn pair(&self) -> (&K, &V) { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 77 | impl<'a, K: Eq + Hash, V> Deref for Ref<'a, K, V> { [INFO] [stdout] | ------------------------------------------------- trait implemented here [INFO] [stdout] 78 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:41:22 [INFO] [stdout] | [INFO] [stdout] 41 | pub fn map(self, f: F) -> MappedRef<'a, K, V, T> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 77 | impl<'a, K: Eq + Hash, V> Deref for Ref<'a, K, V> { [INFO] [stdout] | ------------------------------------------------- trait implemented here [INFO] [stdout] 78 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:52:26 [INFO] [stdout] | [INFO] [stdout] 52 | pub fn try_map(self, f: F) -> Result, Self> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 77 | impl<'a, K: Eq + Hash, V> Deref for Ref<'a, K, V> { [INFO] [stdout] | ------------------------------------------------- trait implemented here [INFO] [stdout] 78 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:103:16 [INFO] [stdout] | [INFO] [stdout] 103 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:107:18 [INFO] [stdout] | [INFO] [stdout] 107 | pub fn value(&self) -> &V { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:111:22 [INFO] [stdout] | [INFO] [stdout] 111 | pub fn value_mut(&mut self) -> &mut V { [INFO] [stdout] | ^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:115:17 [INFO] [stdout] | [INFO] [stdout] 115 | pub fn pair(&self) -> (&K, &V) { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:119:21 [INFO] [stdout] | [INFO] [stdout] 119 | pub fn pair_mut(&mut self) -> (&K, &mut V) { [INFO] [stdout] | ^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:123:22 [INFO] [stdout] | [INFO] [stdout] 123 | pub fn downgrade(self) -> Ref<'a, K, V> { [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:127:22 [INFO] [stdout] | [INFO] [stdout] 127 | pub fn map(self, f: F) -> MappedRefMut<'a, K, V, T> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:138:26 [INFO] [stdout] | [INFO] [stdout] 138 | pub fn try_map(self, f: F) -> Result, Self> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 165 | impl<'a, K: Eq + Hash, V> Deref for RefMut<'a, K, V> { [INFO] [stdout] | ---------------------------------------------------- trait implemented here [INFO] [stdout] 166 | type Target = V; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:186:16 [INFO] [stdout] | [INFO] [stdout] 186 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 235 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRef<'a, K, V, T> { [INFO] [stdout] | ------------------------------------------------------------- trait implemented here [INFO] [stdout] 236 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:190:18 [INFO] [stdout] | [INFO] [stdout] 190 | pub fn value(&self) -> &T { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 235 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRef<'a, K, V, T> { [INFO] [stdout] | ------------------------------------------------------------- trait implemented here [INFO] [stdout] 236 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:194:17 [INFO] [stdout] | [INFO] [stdout] 194 | pub fn pair(&self) -> (&K, &T) { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 235 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRef<'a, K, V, T> { [INFO] [stdout] | ------------------------------------------------------------- trait implemented here [INFO] [stdout] 236 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:198:23 [INFO] [stdout] | [INFO] [stdout] 198 | pub fn map(self, f: F) -> MappedRef<'a, K, V, T2> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 235 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRef<'a, K, V, T> { [INFO] [stdout] | ------------------------------------------------------------- trait implemented here [INFO] [stdout] 236 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:209:27 [INFO] [stdout] | [INFO] [stdout] 209 | pub fn try_map(self, f: F) -> Result, Self> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 235 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRef<'a, K, V, T> { [INFO] [stdout] | ------------------------------------------------------------- trait implemented here [INFO] [stdout] 236 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:264:16 [INFO] [stdout] | [INFO] [stdout] 264 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 322 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRefMut<'a, K, V, T> { [INFO] [stdout] | ---------------------------------------------------------------- trait implemented here [INFO] [stdout] 323 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:268:18 [INFO] [stdout] | [INFO] [stdout] 268 | pub fn value(&self) -> &T { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 322 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRefMut<'a, K, V, T> { [INFO] [stdout] | ---------------------------------------------------------------- trait implemented here [INFO] [stdout] 323 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:272:22 [INFO] [stdout] | [INFO] [stdout] 272 | pub fn value_mut(&mut self) -> &mut T { [INFO] [stdout] | ^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 322 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRefMut<'a, K, V, T> { [INFO] [stdout] | ---------------------------------------------------------------- trait implemented here [INFO] [stdout] 323 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:276:17 [INFO] [stdout] | [INFO] [stdout] 276 | pub fn pair(&self) -> (&K, &T) { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 322 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRefMut<'a, K, V, T> { [INFO] [stdout] | ---------------------------------------------------------------- trait implemented here [INFO] [stdout] 323 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:280:21 [INFO] [stdout] | [INFO] [stdout] 280 | pub fn pair_mut(&mut self) -> (&K, &mut T) { [INFO] [stdout] | ^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 322 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRefMut<'a, K, V, T> { [INFO] [stdout] | ---------------------------------------------------------------- trait implemented here [INFO] [stdout] 323 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:284:23 [INFO] [stdout] | [INFO] [stdout] 284 | pub fn map(self, f: F) -> MappedRefMut<'a, K, V, T2> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 322 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRefMut<'a, K, V, T> { [INFO] [stdout] | ---------------------------------------------------------------- trait implemented here [INFO] [stdout] 323 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/mapref/one.rs:295:27 [INFO] [stdout] | [INFO] [stdout] 295 | pub fn try_map(self, f: F) -> Result, Self> [INFO] [stdout] | ^^^^ [INFO] [stdout] ... [INFO] [stdout] 322 | impl<'a, K: Eq + Hash, V, T> Deref for MappedRefMut<'a, K, V, T> { [INFO] [stdout] | ---------------------------------------------------------------- trait implemented here [INFO] [stdout] 323 | type Target = T; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/setref/multiple.rs:14:16 [INFO] [stdout] | [INFO] [stdout] 14 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 19 | impl<'a, K: Eq + Hash> Deref for RefMulti<'a, K> { [INFO] [stdout] | ------------------------------------------------ trait implemented here [INFO] [stdout] 20 | type Target = K; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target [INFO] [stdout] --> src/setref/one.rs:14:16 [INFO] [stdout] | [INFO] [stdout] 14 | pub fn key(&self) -> &K { [INFO] [stdout] | ^^^^^ [INFO] [stdout] ... [INFO] [stdout] 19 | impl<'a, K: Eq + Hash> Deref for Ref<'a, K> { [INFO] [stdout] | ------------------------------------------- trait implemented here [INFO] [stdout] 20 | type Target = K; [INFO] [stdout] | ----------- with `Target` set here [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] error: could not compile `rutin_dashmap` (lib) due to 35 previous errors [INFO] running `Command { std: "docker" "inspect" "834b469279720d6e70189dbdee53cc376d10918572a8246de54e7bab1a0f906f", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "834b469279720d6e70189dbdee53cc376d10918572a8246de54e7bab1a0f906f", kill_on_drop: false }` [INFO] [stdout] 834b469279720d6e70189dbdee53cc376d10918572a8246de54e7bab1a0f906f