1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// Copyright (c) 2019 RepliXio Ltd. All rights reserved.
// Use is subject to license terms.
//

//! Scatter Gather Data Wrapper.

#![doc(html_root_url = "https://docs.rs/rexsgdata/0.8.2")]
#![cfg_attr(feature = "pedantic", warn(clippy::pedantic))]
#![warn(rust_2018_idioms)]
#![warn(clippy::use_self)]
#![deny(warnings, missing_debug_implementations)]
#![feature(crate_visibility_modifier)]
#![feature(test)]

#[allow(unused_extern_crates)]
extern crate test;

pub use crate::iovec::Iovec;
pub use crate::sgdata::SgData;
pub use crate::sglist::SgList;
pub use crate::zle::Zle;

mod iovec;
mod sgdata;
mod sglist;
mod utils;
mod zle;