You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This should generate impl Desierialize for Foo<Unchecked>, by basically hardcoding V. This way the struct can remain generic. Existing bound is kind of like it, but for bounds, while I have a single (possibly multiple) concrete types only. Trying to make a sub-bound over V: NetworkValidation will not work AFAICT.
The text was updated successfully, but these errors were encountered:
I have a type
Address<V : NetworkValidation>
that implsDeserialize
only forAddress<Unchecked>
.I'd like to use it in some other
structs
but deriveDeserialize
only forAddress<Unchecked>
:This should generate
impl Desierialize for Foo<Unchecked>
, by basically hardcodingV
. This way the struct can remain generic. Existingbound
is kind of like it, but for bounds, while I have a single (possibly multiple) concrete types only. Trying to make a sub-bound overV: NetworkValidation
will not work AFAICT.The text was updated successfully, but these errors were encountered: