wireframe 0.3.0

Simplify building servers and clients for custom binary protocols.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Tests for server configuration utilities.
//!
//! This module exercises the `WireframeServer` builder, covering worker counts,
//! binding behaviour, preamble handling, handler registration, and method
//! chaining. Fixtures from `test_util` provide shared setup and parameterised
//! cases via `rstest`.

mod tests_backoff;
mod tests_basic;
mod tests_binding;
mod tests_integration;
mod tests_preamble;

#[derive(Clone, Copy, Debug, PartialEq, Eq)]
enum PreambleHandlerKind {
    Success,
    Failure,
}