@@ -206,7 +206,7 @@ impl OsString {
206
206
}
207
207
208
208
/// Converts this `OsString` into a boxed `OsStr`.
209
- #[ unstable( feature = "into_boxed_os_str" , issue = "0 " ) ]
209
+ #[ unstable( feature = "into_boxed_os_str" , issue = "40380 " ) ]
210
210
pub fn into_boxed_os_str ( self ) -> Box < OsStr > {
211
211
unsafe { mem:: transmute ( self . inner . into_box ( ) ) }
212
212
}
@@ -442,6 +442,13 @@ impl OsStr {
442
442
self . inner . inner . len ( )
443
443
}
444
444
445
+ /// Converts a `Box<OsStr>` into an `OsString` without copying or allocating.
446
+ #[ unstable( feature = "into_boxed_os_str" , issue = "40380" ) ]
447
+ pub fn into_os_string ( self : Box < OsStr > ) -> OsString {
448
+ let inner: Box < Slice > = unsafe { mem:: transmute ( self ) } ;
449
+ OsString { inner : Buf :: from_box ( inner) }
450
+ }
451
+
445
452
/// Gets the underlying byte representation.
446
453
///
447
454
/// Note: it is *crucial* that this API is private, to avoid
@@ -458,6 +465,20 @@ impl<'a> From<&'a OsStr> for Box<OsStr> {
458
465
}
459
466
}
460
467
468
+ #[ stable( feature = "os_string_from_box" , since = "1.17.0" ) ]
469
+ impl < ' a > From < Box < OsStr > > for OsString {
470
+ fn from ( boxed : Box < OsStr > ) -> OsString {
471
+ boxed. into_os_string ( )
472
+ }
473
+ }
474
+
475
+ #[ stable( feature = "box_from_c_string" , since = "1.17.0" ) ]
476
+ impl Into < Box < OsStr > > for OsString {
477
+ fn into ( self ) -> Box < OsStr > {
478
+ self . into_boxed_os_str ( )
479
+ }
480
+ }
481
+
461
482
#[ stable( feature = "box_default_extra" , since = "1.17.0" ) ]
462
483
impl Default for Box < OsStr > {
463
484
fn default ( ) -> Box < OsStr > {
@@ -766,12 +787,11 @@ mod tests {
766
787
fn into_boxed ( ) {
767
788
let orig = "Hello, world!" ;
768
789
let os_str = OsStr :: new ( orig) ;
769
- let os_string = os_str. to_owned ( ) ;
770
- let box1: Box < OsStr > = Box :: from ( os_str) ;
771
- let box2 = os_string. into_boxed_os_str ( ) ;
772
- assert_eq ! ( os_str, & * box1) ;
773
- assert_eq ! ( box1, box2) ;
774
- assert_eq ! ( & * box2, os_str) ;
790
+ let boxed: Box < OsStr > = Box :: from ( os_str) ;
791
+ let os_string = os_str. to_owned ( ) . into_boxed_os_str ( ) . into_os_string ( ) ;
792
+ assert_eq ! ( os_str, & * boxed) ;
793
+ assert_eq ! ( & * boxed, & * os_string) ;
794
+ assert_eq ! ( & * os_string, os_str) ;
775
795
}
776
796
777
797
#[ test]
0 commit comments