| 3 | |
| 4 | #[derive(Debug, PartialEq)] |
| 5 | pub enum ClaError { |
| 6 | MissingInputs, |
| 7 | InvalidAssetPrices(&'static str), |
| 8 | UnknownReturns(String), |
| 9 | UnknownSolution(String), |
| 10 | DimensionMismatch, |
| 11 | IndexError, |
| 12 | NoData, |
| 13 | } |
| 14 | |
| 15 | #[derive(Clone)] |
| 16 | pub struct AssetPrices { |
nothing calls this directly
no outgoing calls
no test coverage detected