pub enum ParsingError {
Show 19 variants
    InvalidDoris,
    HeaderLineTooShort,
    Version,
    EpochFlag,
    ObservationFlag,
    SNR,
    Observable,
    Receiver,
    Frequency,
    COSPAR(Error),
    DOMES(Error),
    DorisL1L2DateOffset,
    GroundStation,
    Epoch(HifitimeError),
    EpochFormat,
    EpochParsing(ParsingError),
    NonStandardFileName,
    ClockOffset,
    StationFormat,
}Expand description
Errors that may rise when parsing DORIS files
Variants§
InvalidDoris
HeaderLineTooShort
Version
EpochFlag
ObservationFlag
SNR
Observable
Receiver
Frequency
COSPAR(Error)
DOMES(Error)
DorisL1L2DateOffset
GroundStation
Epoch(HifitimeError)
EpochFormat
EpochParsing(ParsingError)
NonStandardFileName
ClockOffset
StationFormat
Trait Implementations§
Source§impl Debug for ParsingError
 
impl Debug for ParsingError
Source§impl Display for ParsingError
 
impl Display for ParsingError
Source§impl Error for ParsingError
 
impl Error for ParsingError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
 
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for ParsingError
 
impl From<Error> for ParsingError
Source§fn from(source: CosparParsingError) -> Self
 
fn from(source: CosparParsingError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for ParsingError
 
impl From<Error> for ParsingError
Source§fn from(source: DOMESParsingError) -> Self
 
fn from(source: DOMESParsingError) -> Self
Converts to this type from the input type.
Source§impl From<HifitimeError> for ParsingError
 
impl From<HifitimeError> for ParsingError
Source§fn from(source: HifitimeError) -> Self
 
fn from(source: HifitimeError) -> Self
Converts to this type from the input type.
Source§impl From<ParsingError> for ParsingError
 
impl From<ParsingError> for ParsingError
Source§fn from(source: HifitimeParsingError) -> Self
 
fn from(source: HifitimeParsingError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParsingError
impl RefUnwindSafe for ParsingError
impl Send for ParsingError
impl Sync for ParsingError
impl Unpin for ParsingError
impl UnwindSafe for ParsingError
Blanket Implementations§
Source§impl<T> AsErrorSource for Twhere
    T: Error + 'static,
 
impl<T> AsErrorSource for Twhere
    T: Error + 'static,
Source§fn as_error_source(&self) -> &(dyn Error + 'static)
 
fn as_error_source(&self) -> &(dyn Error + 'static)
For maximum effectiveness, this needs to be called as a method
to benefit from Rust’s automatic dereferencing of method
receivers.
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more