EopParseError
Defined in: error.rs:7
pub enum EopParseError { InvalidLine { line: usize, reason: &'static str }, InvalidNumber { line: usize, column: &'static str, value: String }, Empty, NonMonotonicMjd { line: usize, previous: f64, current: f64 },}Error during EOP data file parsing.
Variants
Section titled “Variants”InvalidLine
Section titled “InvalidLine”line: usize reason: &‘static str
A line could not be parsed.
InvalidNumber
Section titled “InvalidNumber”line: usize column: &‘static str value: String
A numeric field could not be parsed.
The file contained no valid entries.
NonMonotonicMjd
Section titled “NonMonotonicMjd”line: usize previous: f64 current: f64
MJD values are not monotonically increasing.