pub enum ProcessingError {
Show 17 variants
Io(Error),
Csv(Error),
DateParse(ParseError),
TemperatureValidation {
message: String,
},
StationNotFound {
station_id: u32,
},
Parquet(ParquetError),
Arrow(ArrowError),
Config(String),
Validation(ValidationErrors),
InvalidCoordinate(String),
InvalidQualityFlag(u8),
DataMerge(String),
MissingData(String),
InvalidFormat(String),
Cancelled,
TaskJoin(JoinError),
Zip(ZipError),
}Variants§
Io(Error)
Csv(Error)
DateParse(ParseError)
TemperatureValidation
StationNotFound
Parquet(ParquetError)
Arrow(ArrowError)
Config(String)
Validation(ValidationErrors)
InvalidCoordinate(String)
InvalidQualityFlag(u8)
DataMerge(String)
MissingData(String)
InvalidFormat(String)
Cancelled
TaskJoin(JoinError)
Zip(ZipError)
Trait Implementations§
Source§impl Debug for ProcessingError
impl Debug for ProcessingError
Source§impl Display for ProcessingError
impl Display for ProcessingError
Source§impl Error for ProcessingError
impl Error for ProcessingError
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<ArrowError> for ProcessingError
impl From<ArrowError> for ProcessingError
Source§fn from(source: ArrowError) -> Self
fn from(source: ArrowError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for ProcessingError
impl From<Error> for ProcessingError
Source§impl From<Error> for ProcessingError
impl From<Error> for ProcessingError
Source§impl From<JoinError> for ProcessingError
impl From<JoinError> for ProcessingError
Source§impl From<ParquetError> for ProcessingError
impl From<ParquetError> for ProcessingError
Source§fn from(source: ParquetError) -> Self
fn from(source: ParquetError) -> Self
Converts to this type from the input type.
Source§impl From<ParseError> for ProcessingError
impl From<ParseError> for ProcessingError
Source§fn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Converts to this type from the input type.
Source§impl From<ValidationErrors> for ProcessingError
impl From<ValidationErrors> for ProcessingError
Source§fn from(source: ValidationErrors) -> Self
fn from(source: ValidationErrors) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProcessingError
impl !RefUnwindSafe for ProcessingError
impl Send for ProcessingError
impl Sync for ProcessingError
impl Unpin for ProcessingError
impl !UnwindSafe for ProcessingError
Blanket Implementations§
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> ValidateIp for Twhere
T: ToString,
impl<T> ValidateIp for Twhere
T: ToString,
Source§fn validate_ipv4(&self) -> bool
fn validate_ipv4(&self) -> bool
Validates whether the given string is an IP V4
Source§fn validate_ipv6(&self) -> bool
fn validate_ipv6(&self) -> bool
Validates whether the given string is an IP V6
Source§fn validate_ip(&self) -> bool
fn validate_ip(&self) -> bool
Validates whether the given string is an IP