1
2
3
4
5
6
7
8
9
10
11
12
use super::{Kind, Result, Unimplemented};

/// conversion flags
pub mod cflag;
/// input flags
pub mod iflag;
/// output flags
pub mod oflag;
#[cfg(test)]
mod tests;

pub use self::{cflag::Conv, iflag::In, oflag::Out};