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
Heim exposes various system identifiers as primitive types like i32 or string slices. It would be a nice polish touch if those identifiers could be referred to via more explicit type names. I'm not sure whether the full awkwardness of newtypes would be worthwhile though, maybe a typedef would be enough.
For a motivating example, BTreeMap<SessionID, Vec<ProcessID>> decidedly reads more clearly than BTreeMap<i32, Vec<i32>>.