1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
// devela::text::parse // //! String parsing without structured semantics. // #[cfg(test)] mod tests; mod _reexport_core; mod byte_search; // ByteSearch, dep_memchr fns alternatives mod error; // TextParseError[Kind] mod scanner; // TextScanner crate::structural_mods! { // _mods, _reexports _mods { pub use super::{ byte_search::*, error::*, scanner::*, }; } _reexports { pub use super::_reexport_core::*; } }