nex-core 0.27.0

Core networking library for nex.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Core network types and helpers shared across the `nex` crates.
//! Includes interface, MAC/IP, and bitfield utilities used by low-level networking code.

/// Implementation-detail integer aliases used by generated packet accessors.
///
/// These aliases are public only so packet crates can share the generated
/// representation. They are not part of the stable application-facing API.
#[doc(hidden)]
pub mod bitfield;
pub mod interface;
pub mod ip;
pub mod mac;