diff options
| author | Oliver Middleton <olliemail27@gmail.com> | 2017-01-29 13:31:47 +0000 |
|---|---|---|
| committer | Oliver Middleton <olliemail27@gmail.com> | 2017-01-29 13:31:47 +0000 |
| commit | 9128f6100c9bfe2c2c22d85ccec92f01166f5d25 (patch) | |
| tree | 105ea91f8eee10021f4484f281b1cc1409dcd65e /src/libstd/net | |
| parent | 010c3e25c453d0217b114aa125a956cd99f60c88 (diff) | |
| download | rust-9128f6100c9bfe2c2c22d85ccec92f01166f5d25.tar.gz rust-9128f6100c9bfe2c2c22d85ccec92f01166f5d25.zip | |
Fix a few impl stability attributes
The versions show up in rustdoc.
Diffstat (limited to 'src/libstd/net')
| -rw-r--r-- | src/libstd/net/mod.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libstd/net/mod.rs b/src/libstd/net/mod.rs index 2b60fc38198..b0d2e3e4687 100644 --- a/src/libstd/net/mod.rs +++ b/src/libstd/net/mod.rs @@ -106,7 +106,10 @@ impl Iterator for LookupHost { fn next(&mut self) -> Option<SocketAddr> { self.0.next() } } -#[stable(feature = "std_debug", since = "1.15.0")] +#[unstable(feature = "lookup_host", reason = "unsure about the returned \ + iterator and returning socket \ + addresses", + issue = "27705")] impl fmt::Debug for LookupHost { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { f.pad("LookupHost { .. }") |
