1 2 3 4 5 6 7 8 9
//! Provides support for `SEQPACKET` sockets in Tokio. //! //! This requires this librarys `tokio` feature to be enabled. //! See the README for example of how to enable it. mod seqpacket; pub use seqpacket::*; mod traits; pub use traits::*;