//! Talk about the data thing. #[cfg(any(test, feature = "testing"))] pub mod test_data; #[cfg(not(any(test, feature = "testing")))] pub mod data; #[cfg(not(any(test, feature = "testing")))] pub mod data_stream; mod from_data; pub use self::from_data::{FromData, DataOutcome}; #[cfg(any(test, feature = "testing"))] pub use self::test_data::Data; #[cfg(not(any(test, feature = "testing")))] pub use self::data::Data;