pub enum ParseEpochError {
OpenFile(OpenError),
ReadFile(ReadError),
Deserialize(String, Error),
}
Expand description
An error encountered while parsing the epoch.json file.
Variants§
Trait Implementations§
Source§impl Debug for ParseEpochError
impl Debug for ParseEpochError
Source§impl Display for ParseEpochError
impl Display for ParseEpochError
Source§impl Error for ParseEpochError
impl Error for ParseEpochError
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()
Auto Trait Implementations§
impl Freeze for ParseEpochError
impl !RefUnwindSafe for ParseEpochError
impl Send for ParseEpochError
impl Sync for ParseEpochError
impl Unpin for ParseEpochError
impl !UnwindSafe for ParseEpochError
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