Skip to content
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

Open
michaelbeaumont opened this issue Mar 13, 2025 · 3 comments
Open

Improve add_variable serialization error type #126

michaelbeaumont opened this issue Mar 13, 2025 · 3 comments

Comments

@michaelbeaumont
Copy link

At the moment errors returned by this library Box<dyn Error> are difficult to incorporate, for example with anyhow, because they have quite weak bounds. Another option would be to switch to structured errors, possibly with thiserror.

@clarkmcc
Copy link
Owner

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

@michaelbeaumont
Copy link
Author

OK, maybe this is just something left over then? Specifically this return type

@clarkmcc
Copy link
Owner

clarkmcc commented Mar 13, 2025

Ah, yeah looks leftover. The function always returns Ok(()) so that is unnecessary. I can fix.

Edit: I see now, it's because of the value conversion which depends on the type of value you're providing. A T: Serialize value will return a serialization error. A Value will return an Infallible error. I think I'll need to do some more involved type gymnastics to make this more clean.

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)
    }
}

@clarkmcc clarkmcc changed the title Improve errors Improve add_variable serialization error type Mar 13, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants