summaryrefslogtreecommitdiffstats
path: root/vendor/nom/src/number/mod.rs
blob: 58c3d51b0bdb6afa4f90c592dd98394fafbc9765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Parsers recognizing numbers

pub mod complete;
pub mod streaming;

/// Configurable endianness
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub enum Endianness {
  /// Big endian
  Big,
  /// Little endian
  Little,
  /// Will match the host's endianness
  Native,
}