pub enum SpaceWeatherError {
InvalidDate,
InvalidIndex,
InvalidHeader,
InvalidWindow,
ParseError {
row: usize,
message: String,
},
}Expand description
Errors returned by parsing, validation, and store operations.
Variants§
Trait Implementations§
Source§impl Clone for SpaceWeatherError
impl Clone for SpaceWeatherError
Source§fn clone(&self) -> SpaceWeatherError
fn clone(&self) -> SpaceWeatherError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SpaceWeatherError
impl Debug for SpaceWeatherError
Source§impl Display for SpaceWeatherError
impl Display for SpaceWeatherError
Source§impl PartialEq for SpaceWeatherError
impl PartialEq for SpaceWeatherError
impl Eq for SpaceWeatherError
impl StructuralPartialEq for SpaceWeatherError
Auto Trait Implementations§
impl Freeze for SpaceWeatherError
impl RefUnwindSafe for SpaceWeatherError
impl Send for SpaceWeatherError
impl Sync for SpaceWeatherError
impl Unpin for SpaceWeatherError
impl UnsafeUnpin for SpaceWeatherError
impl UnwindSafe for SpaceWeatherError
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