wireframe 0.3.0

Simplify building servers and clients for custom binary protocols.
Documentation
1
2
3
4
5
6
7
//! Connection-scoped fragmentation type aliases used by app frame handling.

/// Concrete adapter state used by `WireframeApp` connection processing.
pub(crate) type FragmentationState = crate::fragment::DefaultFragmentAdapter;

/// Decode and reassembly errors surfaced by adapter processing.
pub(crate) type FragmentProcessError = crate::fragment::FragmentAdapterError;