Auto merge of #26413 - alexcrichton:from-raw-fd-prelude, r=sfackler

These were just left out by mistake!
This commit is contained in:
bors 2015-06-18 23:28:41 +00:00
commit 2f5683913c
2 changed files with 3 additions and 1 deletions

View File

@ -41,7 +41,7 @@ pub mod raw;
#[stable(feature = "rust1", since = "1.0.0")]
pub mod prelude {
#[doc(no_inline)]
pub use super::io::{RawFd, AsRawFd};
pub use super::io::{RawFd, AsRawFd, FromRawFd};
#[doc(no_inline)] #[stable(feature = "rust1", since = "1.0.0")]
pub use super::ffi::{OsStrExt, OsStringExt};
#[doc(no_inline)]

View File

@ -29,6 +29,8 @@ pub mod process;
pub mod prelude {
#[doc(no_inline)]
pub use super::io::{RawSocket, RawHandle, AsRawSocket, AsRawHandle};
#[doc(no_inline)]
pub use super::io::{FromRawSocket, FromRawHandle};
#[doc(no_inline)] #[stable(feature = "rust1", since = "1.0.0")]
pub use super::ffi::{OsStrExt, OsStringExt};
#[doc(no_inline)]