We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
redundant_clone
1 parent 3310a0b commit a61b7b7Copy full SHA for a61b7b7
std/src/ffi/os_str.rs
@@ -919,6 +919,7 @@ impl OsStr {
919
#[must_use = "this returns the result of the operation, \
920
without modifying the original"]
921
#[inline]
922
+ #[cfg_attr(not(test), rustc_diagnostic_item = "os_str_to_os_string")]
923
pub fn to_os_string(&self) -> OsString {
924
OsString { inner: self.inner.to_owned() }
925
}
std/src/path.rs
@@ -2265,6 +2265,7 @@ impl Path {
2265
2266
2267
#[stable(feature = "rust1", since = "1.0.0")]
2268
+ #[cfg_attr(not(test), rustc_diagnostic_item = "path_to_pathbuf")]
2269
pub fn to_path_buf(&self) -> PathBuf {
2270
PathBuf::from(self.inner.to_os_string())
2271
0 commit comments