Remove descriptions about undefined `uds` feature from docs (#1348)

This commit is contained in:
Masayuki Nagamachi 2020-02-15 11:04:14 +09:00
parent 9b3f7248a8
commit 89c8e9c554
1 changed files with 0 additions and 4 deletions

View File

@ -443,8 +443,6 @@ where
#[cfg(unix)]
/// Start listening for unix domain connections on existing listener.
///
/// This method is available with `uds` feature.
pub fn listen_uds(
mut self,
lst: std::os::unix::net::UnixListener,
@ -483,8 +481,6 @@ where
#[cfg(unix)]
/// Start listening for incoming unix domain connections.
///
/// This method is available with `uds` feature.
pub fn bind_uds<A>(mut self, addr: A) -> io::Result<Self>
where
A: AsRef<std::path::Path>,