r6stats_client 0.2.3

Client for the r6stats API.
Documentation
1
2
3
4
5
#[cfg(not(feature = "threadsafe"))]
pub(crate) type Cell<T> = std::cell::RefCell<T>;

#[cfg(feature = "threadsafe")]
pub(crate) type Cell<T> = tokio::sync::RwLock<T>;