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
Currently all event types are represented (i.e: repr) using their debug format. This is auto-generated by the event_type proc macro.
It would be nice to allow some event types to customize the way they are represented in python. Maybe passing a flag to the proc macro, e.g: #[event_section(py_no_repr)] to indicate repr should not be auto-generated and leaving it to the event type to implement it.
The text was updated successfully, but these errors were encountered:
Currently all event types are represented (i.e: repr) using their debug format. This is auto-generated by the
event_type
proc macro.It would be nice to allow some event types to customize the way they are represented in python. Maybe passing a flag to the proc macro, e.g:
#[event_section(py_no_repr)]
to indicate repr should not be auto-generated and leaving it to the event type to implement it.The text was updated successfully, but these errors were encountered: