You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
336 B
Rust

//! This module regroup the traits used accros the projet.
//!
//! Most of those traits come with a dummy implementation.
//! Actual implementations are either in generic modules or
//! in target specific modules.
//!
//! # TODO
//!
//! How to select the implementation to use?
pub mod console;
pub mod synchronization;
pub mod time;