tickrs 0.15.0

Realtime ticker data in your terminal 📈
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod default_timestamps;
pub mod options;
pub mod stock;

/// Container of one or more tasks, that manages capturing all queued task responses
/// into one update response
pub trait Service {
    type Update;

    fn updates(&self) -> Vec<Self::Update>;

    fn pause(&self);

    fn resume(&self);
}