File: impl-bound-with-references-error.stderr

package info (click to toggle)
rustc-web 1.78.0%2Bdfsg1-2~deb12u3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,245,420 kB
  • sloc: xml: 147,985; javascript: 18,022; sh: 11,083; python: 10,265; ansic: 6,172; cpp: 5,023; asm: 4,390; makefile: 4,269
file content (38 lines) | stat: -rw-r--r-- 1,140 bytes parent folder | download | duplicates (8)
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
error[E0412]: cannot find type `Cow` in this scope
  --> $DIR/impl-bound-with-references-error.rs:12:13
   |
LL |     T: Into<Cow<'static, str>>,
   |             ^^^ not found in this scope
   |
help: consider importing this enum
   |
LL + use std::borrow::Cow;
   |

error[E0119]: conflicting implementations of trait `From<LabelText>` for type `LabelText`
  --> $DIR/impl-bound-with-references-error.rs:9:1
   |
LL | / impl<T> From<T> for LabelText
LL | |
LL | | where
LL | |     T: Into<Cow<'static, str>>,
   | |_______________________________^
   |
   = note: conflicting implementation in crate `core`:
           - impl<T> From<T> for T;

error[E0618]: expected function, found `LabelText`
  --> $DIR/impl-bound-with-references-error.rs:16:9
   |
LL |     Plain,
   |     ----- `LabelText::Plain` defined here
...
LL |         LabelText::Plain(text.into())
   |         ^^^^^^^^^^^^^^^^-------------
   |         |
   |         call expression requires function

error: aborting due to 3 previous errors

Some errors have detailed explanations: E0119, E0412, E0618.
For more information about an error, try `rustc --explain E0119`.