Skip to content

Commit

Permalink
Inline std::os::unix::ffi::OsStringExt methods
Browse files Browse the repository at this point in the history
  • Loading branch information
KamilaBorowska committed Jan 11, 2022
1 parent 4a7fb97 commit 7e6d97b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions library/std/src/os/unix/ffi/os_str.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ pub trait OsStringExt: Sealed {

#[stable(feature = "rust1", since = "1.0.0")]
impl OsStringExt for OsString {
#[inline]
fn from_vec(vec: Vec<u8>) -> OsString {
FromInner::from_inner(Buf { inner: vec })
}
#[inline]
fn into_vec(self) -> Vec<u8> {
self.into_inner().inner
}
Expand Down

0 comments on commit 7e6d97b

Please sign in to comment.