//! Packet primitives, codecs, and typed packet families.
/// Number of bytes used by the packet KIND field.
///
/// # Examples
/// ```
/// use suon_protocol::packets::PACKET_KIND_SIZE;
///
/// assert_eq!(PACKET_KIND_SIZE, 1);
/// ```
pub const PACKET_KIND_SIZE: usize = 1;