aleym_core 0.1.0-alpha.1

Extensible news aggregation and knowledge-base engine (Core Library Component of Aleym)
Documentation
1
2
3
4
5
6
7
#[cfg(feature = "net_transport_tcp")]
pub(super) mod tcp;
#[cfg(feature = "net_transport_tls")]
pub(super) mod tls;

#[cfg(feature = "net_transport_tcp")]
pub(super) trait AsyncStream: tokio::io::AsyncRead + tokio::io::AsyncWrite + Send + std::fmt::Debug {}