We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ActiveValue
Currently our ActiveValue looks like this:
pub struct ActiveValue<V> where V: Into<Value>, { value: Option<V>, state: ActiveValueState, }
I am thinking to go back to a simple Enum:
pub enum ActiveValue<V> where V: Into<Value>, { Set(V), Unchanged(V), NotSet, }
The overall API should remain the same, just that we should deprecate Unset(None) and favour NotSet instead.
Unset(None)
NotSet
The text was updated successfully, but these errors were encountered:
billy1624
Successfully merging a pull request may close this issue.
Currently our ActiveValue looks like this:
I am thinking to go back to a simple Enum:
The overall API should remain the same, just that we should deprecate
Unset(None)
and favourNotSet
instead.The text was updated successfully, but these errors were encountered: