Skip to content

Commit 6ef72c4

Browse files
committed
[Clippy] Swap option_as_ref_deref to use diagnostic items instead of paths
1 parent b8c0c3b commit 6ef72c4

File tree

5 files changed

+7
-0
lines changed

5 files changed

+7
-0
lines changed

alloc/src/ffi/c_str.rs

+1
Original file line numberDiff line numberDiff line change
@@ -576,6 +576,7 @@ impl CString {
576576
#[inline]
577577
#[must_use]
578578
#[stable(feature = "as_c_str", since = "1.20.0")]
579+
#[cfg_attr(not(test), rustc_diagnostic_item = "cstring_as_c_str")]
579580
pub fn as_c_str(&self) -> &CStr {
580581
&*self
581582
}

alloc/src/string.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1073,6 +1073,7 @@ impl String {
10731073
#[inline]
10741074
#[must_use]
10751075
#[stable(feature = "string_as_str", since = "1.7.0")]
1076+
#[cfg_attr(not(test), rustc_diagnostic_item = "string_as_str")]
10761077
pub fn as_str(&self) -> &str {
10771078
self
10781079
}
@@ -1092,6 +1093,7 @@ impl String {
10921093
#[inline]
10931094
#[must_use]
10941095
#[stable(feature = "string_as_str", since = "1.7.0")]
1096+
#[cfg_attr(not(test), rustc_diagnostic_item = "string_as_mut_str")]
10951097
pub fn as_mut_str(&mut self) -> &mut str {
10961098
self
10971099
}

alloc/src/vec/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1545,6 +1545,7 @@ impl<T, A: Allocator> Vec<T, A> {
15451545
/// ```
15461546
#[inline]
15471547
#[stable(feature = "vec_as_slice", since = "1.7.0")]
1548+
#[cfg_attr(not(test), rustc_diagnostic_item = "vec_as_slice")]
15481549
pub fn as_slice(&self) -> &[T] {
15491550
self
15501551
}
@@ -1562,6 +1563,7 @@ impl<T, A: Allocator> Vec<T, A> {
15621563
/// ```
15631564
#[inline]
15641565
#[stable(feature = "vec_as_slice", since = "1.7.0")]
1566+
#[cfg_attr(not(test), rustc_diagnostic_item = "vec_as_mut_slice")]
15651567
pub fn as_mut_slice(&mut self) -> &mut [T] {
15661568
self
15671569
}

std/src/ffi/os_str.rs

+1
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ impl OsString {
196196
/// let os_str = OsStr::new("foo");
197197
/// assert_eq!(os_string.as_os_str(), os_str);
198198
/// ```
199+
#[cfg_attr(not(test), rustc_diagnostic_item = "os_string_as_os_str")]
199200
#[stable(feature = "rust1", since = "1.0.0")]
200201
#[must_use]
201202
#[inline]

std/src/path.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1226,6 +1226,7 @@ impl PathBuf {
12261226
/// let p = PathBuf::from("/test");
12271227
/// assert_eq!(Path::new("/test"), p.as_path());
12281228
/// ```
1229+
#[cfg_attr(not(test), rustc_diagnostic_item = "pathbuf_as_path")]
12291230
#[stable(feature = "rust1", since = "1.0.0")]
12301231
#[must_use]
12311232
#[inline]

0 commit comments

Comments
 (0)