summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/inefficient_to_string.stderr
blob: 914dc92bfb65acd6a37d39569061ba3452b27071 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
error: calling `to_string` on `&&str`
  --> $DIR/inefficient_to_string.rs:11:21
   |
LL |     let _: String = rrstr.to_string();
   |                     ^^^^^^^^^^^^^^^^^ help: try dereferencing the receiver: `(*rrstr).to_string()`
   |
   = help: `&str` implements `ToString` through a slower blanket impl, but `str` has a fast specialization of `ToString`
note: the lint level is defined here
  --> $DIR/inefficient_to_string.rs:2:9
   |
LL | #![deny(clippy::inefficient_to_string)]
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: calling `to_string` on `&&&str`
  --> $DIR/inefficient_to_string.rs:12:21
   |
LL |     let _: String = rrrstr.to_string();
   |                     ^^^^^^^^^^^^^^^^^^ help: try dereferencing the receiver: `(**rrrstr).to_string()`
   |
   = help: `&&str` implements `ToString` through a slower blanket impl, but `str` has a fast specialization of `ToString`

error: calling `to_string` on `&&std::string::String`
  --> $DIR/inefficient_to_string.rs:20:21
   |
LL |     let _: String = rrstring.to_string();
   |                     ^^^^^^^^^^^^^^^^^^^^ help: try dereferencing the receiver: `(*rrstring).to_string()`
   |
   = help: `&std::string::String` implements `ToString` through a slower blanket impl, but `std::string::String` has a fast specialization of `ToString`

error: calling `to_string` on `&&&std::string::String`
  --> $DIR/inefficient_to_string.rs:21:21
   |
LL |     let _: String = rrrstring.to_string();
   |                     ^^^^^^^^^^^^^^^^^^^^^ help: try dereferencing the receiver: `(**rrrstring).to_string()`
   |
   = help: `&&std::string::String` implements `ToString` through a slower blanket impl, but `std::string::String` has a fast specialization of `ToString`

error: calling `to_string` on `&&std::borrow::Cow<'_, str>`
  --> $DIR/inefficient_to_string.rs:29:21
   |
LL |     let _: String = rrcow.to_string();
   |                     ^^^^^^^^^^^^^^^^^ help: try dereferencing the receiver: `(*rrcow).to_string()`
   |
   = help: `&std::borrow::Cow<'_, str>` implements `ToString` through a slower blanket impl, but `std::borrow::Cow<'_, str>` has a fast specialization of `ToString`

error: calling `to_string` on `&&&std::borrow::Cow<'_, str>`
  --> $DIR/inefficient_to_string.rs:30:21
   |
LL |     let _: String = rrrcow.to_string();
   |                     ^^^^^^^^^^^^^^^^^^ help: try dereferencing the receiver: `(**rrrcow).to_string()`
   |
   = help: `&&std::borrow::Cow<'_, str>` implements `ToString` through a slower blanket impl, but `std::borrow::Cow<'_, str>` has a fast specialization of `ToString`

error: aborting due to 6 previous errors