zmq2 0.5.0

Maintained high-level bindings to the zeromq library
Documentation
use zmq2::*;
use zmq_sys2::errno;

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