pub enum ComputeError {
ParseError(String),
JsonError(Error),
MissingField(String),
InvalidTimezone(String),
DateParseError(String),
NormalizationError(String),
FeatureError(String),
EncodingError(String),
UnsupportedVendor(String),
InvalidBehaviorSession(String),
InsufficientEvents(String),
}Expand description
Errors that can occur during computation
Variants§
ParseError(String)
JsonError(Error)
MissingField(String)
InvalidTimezone(String)
DateParseError(String)
NormalizationError(String)
FeatureError(String)
EncodingError(String)
UnsupportedVendor(String)
InvalidBehaviorSession(String)
InsufficientEvents(String)
Trait Implementations§
Source§impl Debug for ComputeError
impl Debug for ComputeError
Source§impl Display for ComputeError
impl Display for ComputeError
Source§impl Error for ComputeError
impl Error for ComputeError
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 ComputeError
impl !RefUnwindSafe for ComputeError
impl Send for ComputeError
impl Sync for ComputeError
impl Unpin for ComputeError
impl !UnwindSafe for ComputeError
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