1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-07-01 16:55:08 +02:00

Remove descriptions about undefined uds feature from docs (#1356)

This commit is contained in:
Masayuki Nagamachi
2020-02-16 04:18:31 +09:00
committed by GitHub
parent 9b3f7248a8
commit 6ab7cfa2be

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>,