| 1 | //! Parsers recognizing numbers | 
|---|---|
| 2 | |
| 3 | pub mod complete; | 
| 4 | pub mod streaming; | 
| 5 | |
| 6 | /// Configurable endianness | 
| 7 | #[ derive(Debug, PartialEq, Eq, Clone, Copy)] | 
| 8 | pub enum Endianness { | 
| 9 | /// Big endian | 
| 10 | Big, | 
| 11 | /// Little endian | 
| 12 | Little, | 
| 13 | /// Will match the host's endianness | 
| 14 | Native, | 
| 15 | } | 
| 16 | 
