wspr_cdk 0.0.12

This crate provides an abstraction that allows you to do analysis on wspr's real time spot data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// #[derive(Debug)]
/// pub enum ClickHouseActions {
///    Get,             // Fetch all records.
///    GetById(u64),    // Fetch record by Id.
/// }

#[derive(Debug)]
pub enum ClickHouseActions {
    Get,
    GetById(u64),
}