Remove public qualification from private data modules.

This commit is contained in:
Sergio Benitez 2016-10-25 13:35:02 +02:00
parent 1849365eda
commit 81113ecf50
1 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
//! Types and traits for reading and parsing request body data. //! Types and traits for reading and parsing request body data.
#[cfg(any(test, feature = "testing"))] pub mod test_data; #[cfg(any(test, feature = "testing"))] mod test_data;
#[cfg(not(any(test, feature = "testing")))] pub mod data; #[cfg(not(any(test, feature = "testing")))] mod data;
#[cfg(not(any(test, feature = "testing")))] pub mod data_stream; #[cfg(not(any(test, feature = "testing")))] mod data_stream;
mod from_data; mod from_data;
pub use self::from_data::{FromData, Outcome}; pub use self::from_data::{FromData, Outcome};