cat-dev 0.0.13

A library for interacting with the CAT-DEV hardware units distributed by Nintendo (i.e. a type of Wii-U DevKits).
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! These "handler" types, are a way of turning raw rust functions
//! into a [`tower::Service`].
//!
//! This way they can be plugged into TCP servers to handle packets
//! without requiring the function to be decorated.

mod on_stream_begin_handlers;
mod on_stream_end_handlers;

pub use on_stream_begin_handlers::*;
pub use on_stream_end_handlers::*;