diff options
| author | Sergio Benitez <sb@sergio.bz> | 2017-04-22 03:35:53 -0700 |
|---|---|---|
| committer | Sergio Benitez <sb@sergio.bz> | 2017-04-24 16:36:50 -0700 |
| commit | aab87e3e9e71696d475a0b2c57f0dee7f702fc27 (patch) | |
| tree | 02b11d75ba886e2f874f91c39d51bae879d27655 | |
| parent | a765dcaf5378cbd6cfa71f3fdeede82eeca4fc26 (diff) | |
| download | rust-aab87e3e9e71696d475a0b2c57f0dee7f702fc27.tar.gz rust-aab87e3e9e71696d475a0b2c57f0dee7f702fc27.zip | |
Add more_io_inner_methods feature to unstable book.
| -rw-r--r-- | src/doc/unstable-book/src/SUMMARY.md | 1 | ||||
| -rw-r--r-- | src/doc/unstable-book/src/library-features/more-io-inner-methods.md | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/doc/unstable-book/src/SUMMARY.md b/src/doc/unstable-book/src/SUMMARY.md index 61347573041..9b77d99403f 100644 --- a/src/doc/unstable-book/src/SUMMARY.md +++ b/src/doc/unstable-book/src/SUMMARY.md @@ -160,6 +160,7 @@ - [linked_list_extras](library-features/linked-list-extras.md) - [lookup_host](library-features/lookup-host.md) - [manually_drop](library-features/manually-drop.md) + - [more_io_inner_methods](library-features/more-io-inner-methods.md) - [mpsc_select](library-features/mpsc-select.md) - [n16](library-features/n16.md) - [never_type_impls](library-features/never-type-impls.md) diff --git a/src/doc/unstable-book/src/library-features/more-io-inner-methods.md b/src/doc/unstable-book/src/library-features/more-io-inner-methods.md new file mode 100644 index 00000000000..1b56a8b395c --- /dev/null +++ b/src/doc/unstable-book/src/library-features/more-io-inner-methods.md @@ -0,0 +1,9 @@ +# `more_io_inner_methods` + +The tracking issue for this feature is: None. + +------------------------ + +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}`. |
