Skip to main content

nex_core/
lib.rs

1//! Core network types and helpers shared across the `nex` crates.
2//! Includes interface, MAC/IP, and bitfield utilities used by low-level networking code.
3
4/// Implementation-detail integer aliases used by generated packet accessors.
5///
6/// These aliases are public only so packet crates can share the generated
7/// representation. They are not part of the stable application-facing API.
8#[doc(hidden)]
9pub mod bitfield;
10pub mod interface;
11pub mod ip;
12pub mod mac;