zmq 0.10.0

High-level bindings to the zeromq library
Documentation
1
2
3
4
5
6
7
8
use zmq::*;
use zmq_sys::errno;

#[test]
fn from_raw_eintr() {
    let error = Error::from_raw(errno::EINTR);
    assert_eq!(error, Error::EINTR);
}