pub enum ScouterError {
Show 21 variants
SerializeError,
DeSerializeError,
CreatePathError,
GetParentPathError,
CreateDirectoryError,
WriteError,
ReadError,
TypeError(String),
MissingFeatureMapError,
StringProfileError(String),
InvalidDriftTypeError(String),
ShapeMismatchError(String),
FeatureError(String),
Error(String),
MonitorError(MonitorError),
AlertError(AlertError),
CustomError(CustomMetricError),
FeatureQueueError(FeatureQueueError),
SqlError(SqlError),
DriftError(DriftError),
MissingValue,
}
Variants§
SerializeError
DeSerializeError
CreatePathError
GetParentPathError
CreateDirectoryError
WriteError
ReadError
TypeError(String)
MissingFeatureMapError
StringProfileError(String)
InvalidDriftTypeError(String)
ShapeMismatchError(String)
FeatureError(String)
Error(String)
MonitorError(MonitorError)
AlertError(AlertError)
CustomError(CustomMetricError)
FeatureQueueError(FeatureQueueError)
SqlError(SqlError)
DriftError(DriftError)
MissingValue
Trait Implementations§
Source§impl Debug for ScouterError
impl Debug for ScouterError
Source§impl<'de> Deserialize<'de> for ScouterError
impl<'de> Deserialize<'de> for ScouterError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ScouterError
impl Display for ScouterError
Source§impl Error for ScouterError
impl Error for ScouterError
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<AlertError> for ScouterError
impl From<AlertError> for ScouterError
Source§fn from(source: AlertError) -> Self
fn from(source: AlertError) -> Self
Converts to this type from the input type.
Source§impl From<CustomMetricError> for ScouterError
impl From<CustomMetricError> for ScouterError
Source§fn from(source: CustomMetricError) -> Self
fn from(source: CustomMetricError) -> Self
Converts to this type from the input type.
Source§impl From<DriftError> for ScouterError
impl From<DriftError> for ScouterError
Source§fn from(source: DriftError) -> Self
fn from(source: DriftError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for ScouterError
impl From<Error> for ScouterError
Source§fn from(err: Error) -> ScouterError
fn from(err: Error) -> ScouterError
Converts to this type from the input type.
Source§impl From<FeatureQueueError> for ScouterError
impl From<FeatureQueueError> for ScouterError
Source§fn from(source: FeatureQueueError) -> Self
fn from(source: FeatureQueueError) -> Self
Converts to this type from the input type.
Source§impl From<MonitorError> for ScouterError
impl From<MonitorError> for ScouterError
Source§fn from(source: MonitorError) -> Self
fn from(source: MonitorError) -> Self
Converts to this type from the input type.
Source§impl From<PyErr> for ScouterError
impl From<PyErr> for ScouterError
Source§fn from(err: PyErr) -> ScouterError
fn from(err: PyErr) -> ScouterError
Converts to this type from the input type.
Source§impl From<ScouterError> for PyErr
impl From<ScouterError> for PyErr
Source§fn from(err: ScouterError) -> PyErr
fn from(err: ScouterError) -> PyErr
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ScouterError
impl RefUnwindSafe for ScouterError
impl Send for ScouterError
impl Sync for ScouterError
impl Unpin for ScouterError
impl UnwindSafe for ScouterError
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