File tree 4 files changed +4
-4
lines changed
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 {
2008
2008
}
2009
2009
}
2010
2010
2011
- #[ stable( feature = "box_from_str" , since = "1.18 .0" ) ]
2011
+ #[ stable( feature = "box_from_str" , since = "1.20 .0" ) ]
2012
2012
impl From < String > for Box < str > {
2013
2013
fn from ( s : String ) -> Box < str > {
2014
2014
s. into_boxed_str ( )
Original file line number Diff line number Diff line change @@ -585,7 +585,7 @@ impl From<Box<CStr>> for CString {
585
585
}
586
586
}
587
587
588
- #[ stable( feature = "box_from_c_string" , since = "1.18 .0" ) ]
588
+ #[ stable( feature = "box_from_c_string" , since = "1.20 .0" ) ]
589
589
impl From < CString > for Box < CStr > {
590
590
#[ inline]
591
591
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 {
542
542
}
543
543
}
544
544
545
- #[ stable( feature = "box_from_os_string" , since = "1.18 .0" ) ]
545
+ #[ stable( feature = "box_from_os_string" , since = "1.20 .0" ) ]
546
546
impl From < OsString > for Box < OsStr > {
547
547
fn from ( s : OsString ) -> Box < OsStr > {
548
548
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 {
1348
1348
}
1349
1349
}
1350
1350
1351
- #[ stable( feature = "box_from_path_buf" , since = "1.18 .0" ) ]
1351
+ #[ stable( feature = "box_from_path_buf" , since = "1.20 .0" ) ]
1352
1352
impl From < PathBuf > for Box < Path > {
1353
1353
fn from ( p : PathBuf ) -> Box < Path > {
1354
1354
p. into_boxed_path ( )
You can’t perform that action at this time.
0 commit comments