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
8
9
10
11
12
#[cfg(any(feature = "net_protocol_http1", feature = "net_protocol_http2"))]
mod impl_http;

#[allow(unused)]
#[non_exhaustive]
pub enum Client {
	#[cfg(feature = "net_interface_clear")]
	Clear(super::interfaces::ClearInterface),
	// TODO: Analyze if we need Box or not.
	#[cfg(feature = "net_interface_tor")]
	Tor(Box<super::interfaces::TorInterface>),
}