File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2008,7 +2008,7 @@ impl From<Box<str>> for String {
20082008 }
20092009}
20102010
2011- #[ stable( feature = "box_from_str" , since = "1.18 .0" ) ]
2011+ #[ stable( feature = "box_from_str" , since = "1.20 .0" ) ]
20122012impl From < String > for Box < str > {
20132013 fn from ( s : String ) -> Box < str > {
20142014 s. into_boxed_str ( )
Original file line number Diff line number Diff line change @@ -585,7 +585,7 @@ impl From<Box<CStr>> for CString {
585585 }
586586}
587587
588- #[ stable( feature = "box_from_c_string" , since = "1.18 .0" ) ]
588+ #[ stable( feature = "box_from_c_string" , since = "1.20 .0" ) ]
589589impl From < CString > for Box < CStr > {
590590 #[ inline]
591591 fn from ( s : CString ) -> Box < CStr > {
Original file line number Diff line number Diff line change @@ -542,7 +542,7 @@ impl From<Box<OsStr>> for OsString {
542542 }
543543}
544544
545- #[ stable( feature = "box_from_os_string" , since = "1.18 .0" ) ]
545+ #[ stable( feature = "box_from_os_string" , since = "1.20 .0" ) ]
546546impl From < OsString > for Box < OsStr > {
547547 fn from ( s : OsString ) -> Box < OsStr > {
548548 s. into_boxed_os_str ( )
Original file line number Diff line number Diff line change @@ -1348,7 +1348,7 @@ impl From<Box<Path>> for PathBuf {
13481348 }
13491349}
13501350
1351- #[ stable( feature = "box_from_path_buf" , since = "1.18 .0" ) ]
1351+ #[ stable( feature = "box_from_path_buf" , since = "1.20 .0" ) ]
13521352impl From < PathBuf > for Box < Path > {
13531353 fn from ( p : PathBuf ) -> Box < Path > {
13541354 p. into_boxed_path ( )
You can’t perform that action at this time.
0 commit comments