//! 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;