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 was done to minimize refactoring required to release v0.10.0, which included auto-reconnect, reduced memory allocation and became usable from rustc's stable channel. However, the resulting code is a bit cluttered.
Instances of String in the Frame struct should be replaced with lifeguard's Recycled<String> type. This will allow all of the strings.attach(...) calls to be deleted.
The text was updated successfully, but these errors were encountered:
This was done to minimize refactoring required to release
v0.10.0
, which included auto-reconnect, reduced memory allocation and became usable fromrustc
's stable channel. However, the resulting code is a bit cluttered.Instances of
String
in theFrame
struct should be replaced withlifeguard
'sRecycled<String>
type. This will allow all of thestrings.attach(...)
calls to be deleted.The text was updated successfully, but these errors were encountered: