@@ -798,6 +798,8 @@ impl str {
798
798
///
799
799
/// assert_eq!(None, iter.next());
800
800
/// ```
801
+ #[ must_use = "this returns the split string as an iterator, \
802
+ without modifying the original"]
801
803
#[ stable( feature = "split_whitespace" , since = "1.1.0" ) ]
802
804
#[ inline]
803
805
pub fn split_whitespace ( & self ) -> SplitWhitespace < ' _ > {
@@ -839,6 +841,8 @@ impl str {
839
841
///
840
842
/// assert_eq!(None, iter.next());
841
843
/// ```
844
+ #[ must_use = "this returns the split string as an iterator, \
845
+ without modifying the original"]
842
846
#[ stable( feature = "split_ascii_whitespace" , since = "1.34.0" ) ]
843
847
#[ inline]
844
848
pub fn split_ascii_whitespace ( & self ) -> SplitAsciiWhitespace < ' _ > {
@@ -914,6 +918,8 @@ impl str {
914
918
///
915
919
/// assert!(utf16_len <= utf8_len);
916
920
/// ```
921
+ #[ must_use = "this returns the encoded string as an iterator, \
922
+ without modifying the original"]
917
923
#[ stable( feature = "encode_utf16" , since = "1.8.0" ) ]
918
924
pub fn encode_utf16 ( & self ) -> EncodeUtf16 < ' _ > {
919
925
EncodeUtf16 { chars : self . chars ( ) , extra : 0 }
@@ -1846,6 +1852,8 @@ impl str {
1846
1852
/// let s = " עברית";
1847
1853
/// assert!(Some('ע') == s.trim_left().chars().next());
1848
1854
/// ```
1855
+ #[ must_use = "this returns the trimmed string as a new slice, \
1856
+ without modifying the original"]
1849
1857
#[ inline]
1850
1858
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1851
1859
#[ rustc_deprecated(
@@ -1888,6 +1896,8 @@ impl str {
1888
1896
/// let s = "עברית ";
1889
1897
/// assert!(Some('ת') == s.trim_right().chars().rev().next());
1890
1898
/// ```
1899
+ #[ must_use = "this returns the trimmed string as a new slice, \
1900
+ without modifying the original"]
1891
1901
#[ inline]
1892
1902
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1893
1903
#[ rustc_deprecated(
@@ -2352,6 +2362,8 @@ impl str {
2352
2362
/// ```
2353
2363
/// assert_eq!("❤\n!".escape_debug().to_string(), "❤\\n!");
2354
2364
/// ```
2365
+ #[ must_use = "this returns the escaped string as an iterator, \
2366
+ without modifying the original"]
2355
2367
#[ stable( feature = "str_escape" , since = "1.34.0" ) ]
2356
2368
pub fn escape_debug ( & self ) -> EscapeDebug < ' _ > {
2357
2369
let mut chars = self . chars ( ) ;
@@ -2396,6 +2408,8 @@ impl str {
2396
2408
/// ```
2397
2409
/// assert_eq!("❤\n!".escape_default().to_string(), "\\u{2764}\\n!");
2398
2410
/// ```
2411
+ #[ must_use = "this returns the escaped string as an iterator, \
2412
+ without modifying the original"]
2399
2413
#[ stable( feature = "str_escape" , since = "1.34.0" ) ]
2400
2414
pub fn escape_default ( & self ) -> EscapeDefault < ' _ > {
2401
2415
EscapeDefault { inner : self . chars ( ) . flat_map ( CharEscapeDefault ) }
@@ -2432,6 +2446,8 @@ impl str {
2432
2446
/// ```
2433
2447
/// assert_eq!("❤\n!".escape_unicode().to_string(), "\\u{2764}\\u{a}\\u{21}");
2434
2448
/// ```
2449
+ #[ must_use = "this returns the escaped string as an iterator, \
2450
+ without modifying the original"]
2435
2451
#[ stable( feature = "str_escape" , since = "1.34.0" ) ]
2436
2452
pub fn escape_unicode ( & self ) -> EscapeUnicode < ' _ > {
2437
2453
EscapeUnicode { inner : self . chars ( ) . flat_map ( CharEscapeUnicode ) }
0 commit comments