pub enum ParamStoreError {
NotFound(String),
OutOfBounds {
param_id: String,
value: f64,
min: f64,
max: f64,
},
TierViolation {
param_id: String,
required: AutonomyTier,
caller: AutonomyTier,
},
Arrow(ArrowError),
Parquet(ParquetError),
InvalidSchema(String),
}Variants§
NotFound(String)
OutOfBounds
TierViolation
Arrow(ArrowError)
Parquet(ParquetError)
InvalidSchema(String)
Trait Implementations§
Source§impl Debug for ParamStoreError
impl Debug for ParamStoreError
Source§impl Display for ParamStoreError
impl Display for ParamStoreError
Source§impl Error for ParamStoreError
impl Error for ParamStoreError
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 ParamStoreError
impl From<ArrowError> for ParamStoreError
Source§fn from(source: ArrowError) -> Self
fn from(source: ArrowError) -> Self
Converts to this type from the input type.
Source§impl From<ParquetError> for ParamStoreError
impl From<ParquetError> for ParamStoreError
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 ParamStoreError
impl !RefUnwindSafe for ParamStoreError
impl Send for ParamStoreError
impl Sync for ParamStoreError
impl Unpin for ParamStoreError
impl UnsafeUnpin for ParamStoreError
impl !UnwindSafe for ParamStoreError
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