net: hide net::unix::datagram module from docs (#3775)

This commit is contained in:
Taiki Endo
2021-05-10 04:35:09 +09:00
committed by GitHub
parent 8324317005
commit 9ff7d8c352
+4
View File
@@ -1,5 +1,9 @@
//! Unix domain socket utility types
// This module does not currently provide any public API, but it was
// unintentionally defined as a public module. Hide it from the documentation
// instead of changing it to a private module to avoid breakage.
#[doc(hidden)]
pub mod datagram;
pub(crate) mod listener;