diff options
| author | bors <bors@rust-lang.org> | 2014-01-25 20:41:36 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-01-25 20:41:36 -0800 |
| commit | e36032e9e1aac2ca428f3e17b5524b6c8fe9418c (patch) | |
| tree | da9ec5aeebd1d26de74b540fbb0ce1de75b36e65 /src/libstd/io | |
| parent | e139b49eef62618f7894fde57a54b4d6642fbef8 (diff) | |
| parent | 0aef487a5c2797b34e64ddcfa3974264fbc9830b (diff) | |
| download | rust-e36032e9e1aac2ca428f3e17b5524b6c8fe9418c.tar.gz rust-e36032e9e1aac2ca428f3e17b5524b6c8fe9418c.zip | |
auto merge of #11808 : huonw/rust/std-visible-types, r=brson
These are either returned from public functions, and really should appear in the documentation, but don't since they're private, or are implementation details that are currently public.
Diffstat (limited to 'src/libstd/io')
| -rw-r--r-- | src/libstd/io/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index 027c4f18344..6141faa90da 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -1268,7 +1268,7 @@ pub trait Acceptor<T> { /// The Some contains another Option representing whether the connection attempt was succesful. /// A successful connection will be wrapped in Some. /// A failed connection is represented as a None and raises a condition. -struct IncomingConnections<'a, A> { +pub struct IncomingConnections<'a, A> { priv inc: &'a mut A, } |
