Document Handle::default() behavior (#359)

This commit is contained in:
main()
2018-05-14 11:11:28 -07:00
committed by Carl Lerche
parent 1f5bb121e2
commit 35f3351c97
4 changed files with 8 additions and 2 deletions
+2
View File
@@ -36,6 +36,8 @@ impl UdpSocket {
/// This can be used in conjunction with net2's `UdpBuilder` interface to
/// configure a socket before it's handed off, such as setting options like
/// `reuse_address` or binding to multiple addresses.
///
/// Use `Handle::default()` to lazily bind to an event loop, just like `bind` does.
pub fn from_std(socket: net::UdpSocket,
handle: &Handle) -> io::Result<UdpSocket> {
let io = mio::net::UdpSocket::from_socket(socket)?;