Open DaniPopes opened 1 year ago
sol! macro
Currently we implement all traits by deferring everything to a tuple of the inner types (struct, function arguments and returns, etc.).
This is bad because it:
No response
has lower runtime performance due to needing to clone the types to then just use the tuple by reference
this should have been fixed by the Encodable trait being implemented for &(&T, &U, &V) now, no?
&(&T, &U, &V)
Component
sol! macro
Describe the feature you would like
Currently we implement all traits by deferring everything to a tuple of the inner types (struct, function arguments and returns, etc.).
This is bad because it:
Additional context
No response