bitstring/utils/bigendian/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! bigendian utils to support implementing bit string traits on unsigned integers

#[cfg(feature = "bigendian")]
pub use self::int_helpers::{
	u128,
	u16,
	u32,
	u8,
};

#[cfg(any(feature = "bigendian", feature = "net"))]
pub(crate) mod int_helpers;

#[cfg(feature = "bigendian")]
mod trait_impls;
#[cfg(feature = "bigendian")]
pub(crate) mod traits;

#[cfg(any(feature = "bigendian", feature = "net"))]
#[cfg(test)]
mod tests;