mirror of
https://github.com/rust-lang/rust
synced 2024-11-02 13:50:48 +00:00
Auto merge of #43002 - SergioBenitez:more-io-inner-stable, r=BurntSushi
Stabilize 'more_io_inner_methods' feature. As in the title. Closes #41519.
This commit is contained in:
commit
a19693a54c
2 changed files with 5 additions and 26 deletions
|
@ -1,11 +0,0 @@
|
|||
# `more_io_inner_methods`
|
||||
|
||||
The tracking issue for this feature is: [#41519]
|
||||
|
||||
[#41519]: https://github.com/rust-lang/rust/issues/41519
|
||||
|
||||
------------------------
|
||||
|
||||
This feature enables several internal accessor methods on structures in
|
||||
`std::io` including `Take::{get_ref, get_mut}` and `Chain::{into_inner, get_ref,
|
||||
get_mut}`.
|
|
@ -1589,8 +1589,6 @@ impl<T, U> Chain<T, U> {
|
|||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// #![feature(more_io_inner_methods)]
|
||||
///
|
||||
/// # use std::io;
|
||||
/// use std::io::prelude::*;
|
||||
/// use std::fs::File;
|
||||
|
@ -1604,7 +1602,7 @@ impl<T, U> Chain<T, U> {
|
|||
/// # Ok(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[unstable(feature = "more_io_inner_methods", issue="41519")]
|
||||
#[stable(feature = "more_io_inner_methods", since = "1.20.0")]
|
||||
pub fn into_inner(self) -> (T, U) {
|
||||
(self.first, self.second)
|
||||
}
|
||||
|
@ -1614,8 +1612,6 @@ pub fn into_inner(self) -> (T, U) {
|
|||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// #![feature(more_io_inner_methods)]
|
||||
///
|
||||
/// # use std::io;
|
||||
/// use std::io::prelude::*;
|
||||
/// use std::fs::File;
|
||||
|
@ -1629,7 +1625,7 @@ pub fn into_inner(self) -> (T, U) {
|
|||
/// # Ok(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[unstable(feature = "more_io_inner_methods", issue="41519")]
|
||||
#[stable(feature = "more_io_inner_methods", since = "1.20.0")]
|
||||
pub fn get_ref(&self) -> (&T, &U) {
|
||||
(&self.first, &self.second)
|
||||
}
|
||||
|
@ -1643,8 +1639,6 @@ pub fn get_ref(&self) -> (&T, &U) {
|
|||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// #![feature(more_io_inner_methods)]
|
||||
///
|
||||
/// # use std::io;
|
||||
/// use std::io::prelude::*;
|
||||
/// use std::fs::File;
|
||||
|
@ -1658,7 +1652,7 @@ pub fn get_ref(&self) -> (&T, &U) {
|
|||
/// # Ok(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[unstable(feature = "more_io_inner_methods", issue="41519")]
|
||||
#[stable(feature = "more_io_inner_methods", since = "1.20.0")]
|
||||
pub fn get_mut(&mut self) -> (&mut T, &mut U) {
|
||||
(&mut self.first, &mut self.second)
|
||||
}
|
||||
|
@ -1791,8 +1785,6 @@ pub fn into_inner(self) -> T {
|
|||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// #![feature(more_io_inner_methods)]
|
||||
///
|
||||
/// use std::io;
|
||||
/// use std::io::prelude::*;
|
||||
/// use std::fs::File;
|
||||
|
@ -1808,7 +1800,7 @@ pub fn into_inner(self) -> T {
|
|||
/// # Ok(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[unstable(feature = "more_io_inner_methods", issue="41519")]
|
||||
#[stable(feature = "more_io_inner_methods", since = "1.20.0")]
|
||||
pub fn get_ref(&self) -> &T {
|
||||
&self.inner
|
||||
}
|
||||
|
@ -1822,8 +1814,6 @@ pub fn get_ref(&self) -> &T {
|
|||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// #![feature(more_io_inner_methods)]
|
||||
///
|
||||
/// use std::io;
|
||||
/// use std::io::prelude::*;
|
||||
/// use std::fs::File;
|
||||
|
@ -1839,7 +1829,7 @@ pub fn get_ref(&self) -> &T {
|
|||
/// # Ok(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[unstable(feature = "more_io_inner_methods", issue="41519")]
|
||||
#[stable(feature = "more_io_inner_methods", since = "1.20.0")]
|
||||
pub fn get_mut(&mut self) -> &mut T {
|
||||
&mut self.inner
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue