rrddmma 0.7.3

A Rust library for RDMA.
Documentation
//! An RDMA library consisting of safe RDMA wrappings and several useful
//! functionalities to build RDMA connections.
//!
//! This library respects existing installation of MLNX_OFED or ibverbs.
//! Depending on the environment, it will enable `ibv_exp_*` or RDMA-Core
//! features correspondingly. You may build the documentation in your
//! own environment to see which features are enabled.
//!
//! # Example
//!
//! This example sends and receives a message via RDMA RC QPs.
//!
//! ```rust
#![doc = include_str!("../examples/local_rc_sendrecv.rs")]
//! ```

#![cfg_attr(docsrs, feature(doc_cfg))]

#[cfg(not(target_os = "linux"))]
compile_error!("`rrddmma` currently only supports Linux");

// This must be placed before any other modules because of its macros.
mod utils;

pub mod bindings;
pub mod prelude;
pub mod rdma;

/// Error types generated by RDMA functionalities.
pub mod errors {
    pub use super::rdma::cq::CqCreationError;
    pub use super::rdma::gid::GidQueryError;
    pub use super::rdma::nic::{NicProbeError, PortQueryError};
    pub use super::rdma::qp::QpCreationError;

    #[cfg(mlnx4)]
    pub use super::rdma::dct::DctCreationError;
}

pub mod ctrl;
pub mod mlnx;
pub mod wrap;