-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve add_variable
serialization error type
#126
Comments
Hey do you have a specific example of what you mean? We are using thiserror, I'm not aware of cases where we just using Box https://github.com/clarkmcc/cel-rust/blob/master/interpreter/src/lib.rs |
OK, maybe this is just something left over then? Specifically this return type |
Ah, yeah looks leftover. The function always returns Edit: I see now, it's because of the value conversion which depends on the type of value you're providing. A pub trait TryIntoValue {
type Error: std::error::Error + 'static;
fn try_into_value(self) -> Result<Value, Self::Error>;
}
impl<T: serde::Serialize> TryIntoValue for T {
type Error = crate::ser::SerializationError;
fn try_into_value(self) -> Result<Value, Self::Error> {
crate::ser::to_value(self)
}
}
impl TryIntoValue for Value {
type Error = Infallible;
fn try_into_value(self) -> Result<Value, Self::Error> {
Ok(self)
}
} |
add_variable
serialization error type
At the moment errors returned by this library
Box<dyn Error>
are difficult to incorporate, for example withanyhow
, because they have quite weak bounds. Another option would be to switch to structured errors, possibly withthiserror
.The text was updated successfully, but these errors were encountered: