io_http/sse/mod.rs
1//! W3C Server-Sent Events client.
2//!
3//! The frame parser is decoupled from the body transport: bytes come in via
4//! [`frame::SseFrameParser`]'s `HttpCoroutine::resume`, dispatched events come
5//! out as [`frame::SseFrame`].
6//!
7//! [Server-Sent Events]: https://html.spec.whatwg.org/multipage/server-sent-events.html
8
9pub mod frame;