blob: fe9af5a5f4f56e4a5612a90a16f41d00e95c0579 [file]
error[E0277]: the trait bound `PathBuf: From<Cow<'_, str>>` is not satisfied
--> $DIR/issue-90101.rs:6:10
|
LL | func(Path::new("hello").to_path_buf().to_string_lossy(), "world")
| ---- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `From<Cow<'_, str>>` is not implemented for `PathBuf`
| |
| required by a bound introduced by this call
|
= help: `PathBuf` implements trait `From<T>`:
From<&T>
From<Box<Path>>
From<Cow<'_, Path>>
From<OsString>
From<String>
= note: required for `Cow<'_, str>` to implement `Into<PathBuf>`
note: required by a bound in `func`
--> $DIR/issue-90101.rs:3:20
|
LL | fn func(path: impl Into<PathBuf>, code: impl Into<String>) {}
| ^^^^^^^^^^^^^ required by this bound in `func`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0277`.