We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
std::net 的存在是为了使用套接字。
The std::net exists for working with sockets.
Cargo 中还有一个 bsd 套接字库,您可以使用它进行安装:
我没有尝试过不过还没有出来。或者,如果您想使用 Zeromq,您可以使用我的 绑定。不过,您需要使用 rust 的 HEAD 版本,因为它使用的是 rust 0.1 版本之后添加的代码。如果您需要任何帮助,请随时通过 irc.mozilla.org 的 #rust 频道联系我。我在那里。
There is also a bsd socket library in cargo, which you can install with:
I haven't tried it out yet though. Or if you want to use zeromq, you could use my bindings. You'll need to be using rust's HEAD version though, as it's using code that was added after the rust 0.1 release. Feel free to ping me on irc.mozilla.org's #rust channel if you need any help. I'm erickt there.
您可以尝试 tokio 箱中的 UnixListener 。
You can try UnixListener from the tokio crate.