pub enum ExpmanError {
Io(Error),
Arrow(ArrowError),
Parquet(ParquetError),
Yaml(Error),
Json(Error),
ChannelClosed,
RunNotFound(String),
ExperimentNotFound(String),
Other(String),
}Variants§
Io(Error)
Arrow(ArrowError)
Parquet(ParquetError)
Yaml(Error)
Json(Error)
ChannelClosed
RunNotFound(String)
ExperimentNotFound(String)
Other(String)
Trait Implementations§
Source§impl Debug for ExpmanError
impl Debug for ExpmanError
Source§impl Display for ExpmanError
impl Display for ExpmanError
Source§impl Error for ExpmanError
impl Error for ExpmanError
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 ExpmanError
impl From<ArrowError> for ExpmanError
Source§fn from(source: ArrowError) -> Self
fn from(source: ArrowError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for ExpmanError
impl From<Error> for ExpmanError
Source§impl From<Error> for ExpmanError
impl From<Error> for ExpmanError
Source§impl From<Error> for ExpmanError
impl From<Error> for ExpmanError
Source§impl From<ParquetError> for ExpmanError
impl From<ParquetError> for ExpmanError
Source§fn from(source: ParquetError) -> Self
fn from(source: ParquetError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ExpmanError
impl !RefUnwindSafe for ExpmanError
impl Send for ExpmanError
impl Sync for ExpmanError
impl Unpin for ExpmanError
impl UnsafeUnpin for ExpmanError
impl !UnwindSafe for ExpmanError
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