p2p_chat/network/handlers/
mod.rs

1//! This module contains the event handlers for the various network behaviours.
2//!
3//! The individual modules extend the `NetworkLayer` implementation with
4//! specialized handlers for each of the behaviours.
5mod chat;
6mod discovery;
7mod mailbox;
8mod swarm;