-
-
Notifications
You must be signed in to change notification settings - Fork 707
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
StoreFieldReader
and StoreFieldWriter
should be public
#3257
Comments
When writing this issue, I wasn't actually aware these are read/write guards. However I'm not sure if that makes the issue no longer relevant or not. The motivation for this is that I couldn't find a generic type for writing to a store field. |
Oops does Field not implement Write? Surely that's just an accidental omission on my part. |
Is |
|
Oops my mistake, a manual impl of Update in thawui confused me with this. If the issue is resolved with 9718041 feel free to close. I don't have a real need for |
Is your feature request related to a problem? Please describe.
Field
's in reactive_store implement theStoreField
trait, however the.reader()
and.writer()
methods onStoreField
forField
returns private types:StoreFieldReader
andStoreFieldWriter
. This makes it impossible in cases where you might need to work with these types, since they cannot be imported.Describe the solution you'd like
Make these types public.
The text was updated successfully, but these errors were encountered: