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
It would be nice, if we could mix fields with aliases (field_name as (field_alias): ...) and without aliases (field_name: ...) in the same request! or request_ref! macro invocation.
The problem is fields definition block in the macros is not homogeneous, because I can't use incremental TT muncher pattern, as macro calls doesn't work inside struct definitions, and I have to put macro call inside struct to unroll heterogeneous fields pattern.
The text was updated successfully, but these errors were encountered:
It would be nice, if we could mix fields with aliases (
field_name as (field_alias): ...
) and without aliases (field_name: ...
) in the samerequest!
orrequest_ref!
macro invocation.The problem is fields definition block in the macros is not homogeneous, because I can't use incremental TT muncher pattern, as macro calls doesn't work inside
struct
definitions, and I have to put macro call insidestruct
to unroll heterogeneous fields pattern.The text was updated successfully, but these errors were encountered: