atelier_quant 0.0.12

Quantitative Finance Tools & Models for the atelier-rs engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Error types for the arrivals module.

use thiserror::Error;

/// Errors from interarrival-time computation and validation.
#[derive(Error, Debug)]
#[non_exhaustive]
pub enum ArrivalsError {
    /// Insufficient data for the requested computation.
    #[error("Insufficient data: {0}")]
    InsufficientData(String),
}