mitrid_core 0.9.4

Core library of the Mitrid framework
//! # IO
//!
//! `io` is the module providing the traits and types used to implement I/O operations.

/// Type used to represent read/write permissions.
pub mod permission;

/// Type used to represent I/O sessions.
pub mod session;

/// Traits implemented by stores and storable types.
pub mod store;

/// Traits implemented by networking facilities and types that can use them.
pub mod network;

pub use self::permission::Permission;
pub use self::session::Session;
pub use self::store::{Store, Storable};
pub use self::network::*;