stock-trek 0.4.10

Stock Trek time-series analysis
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Error, Debug)]
#[non_exhaustive]
#[repr(u8)]
pub enum GeneralError {
    #[error("{0}")]
    Message(String),
}