Skip to main content

veloxity_core/
errors.rs

1pub enum TelemError {
2    GenericTelemError(&'static str),
3}
4
5impl Default for TelemError {
6    fn default() -> Self {
7        TelemError::GenericTelemError("Default TelemError")
8    }
9}
10
11#[derive(Debug, Clone, Copy)]
12pub enum EstimatorError {
13    GenericEstimatorError(&'static str),
14}
15
16impl Default for EstimatorError {
17    fn default() -> Self {
18        EstimatorError::GenericEstimatorError("Default EstimatorError")
19    }
20}
21
22#[derive(Debug, Clone, Copy)]
23pub enum SensorError {
24    GenericSensorError(&'static str),
25}
26
27impl Default for SensorError {
28    fn default() -> Self {
29        SensorError::GenericSensorError("Default SensorError")
30    }
31}