Crates.io | ux-indicators |
lib.rs | ux-indicators |
version | 0.1.0 |
source | src |
created_at | 2021-02-27 11:59:47.304009 |
updated_at | 2021-02-27 11:59:47.304009 |
description | Technical Analysis Function Library |
homepage | https://angular-rust.github.io/ux-indicators |
repository | https://github.com/angular-rust/ux-indicators |
max_upload_size | |
id | 361343 |
size | 513,533 |
Actively WIP
pub struct FlowMeta<'a> {
pub name: &'a str,
pub tag: u8,
pub visible: bool
}
pub struct DataFrame<M, D>
where
M: fmt::Display,
{
// metric contain something like a timestamp, or month names
pub metric: M,
// data key is tag for stream meta (a.k.a column tag)
// D is
pub data: HashMap<u8, D>,
}