rrddmma 0.7.3

A Rust library for RDMA.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! The RDMA prelude.
//!
//! The purpose of this module is to alleviate imports of common RDMA
//! functionalities.

pub use crate::rdma::context::Context;
pub use crate::rdma::cq::{Cq, Wc, WcOpcode, WcStatus};
#[cfg(mlnx4)]
pub use crate::rdma::cq::{ExpCq, ExpWc};
#[cfg(mlnx4)]
pub use crate::rdma::dct::Dct;
pub use crate::rdma::mr::{Mr, MrRemote, MrSlice, Slicing};
pub use crate::rdma::nic::{Nic, Port};
pub use crate::rdma::pd::Pd;
pub use crate::rdma::qp::{Qp, QpCaps, QpEndpoint, QpPeer, QpType};
pub use crate::rdma::srq::Srq;
pub use crate::rdma::wr::*;