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
{{ message }}
This repository has been archived by the owner on Oct 21, 2023. It is now read-only.
AtriBot
内有很多Arc wrapper, 比如Client
,Group
,Friend
...他们的数据转移到插件的时候会先转换为
Managed
结构体该转换包含了一次堆分配, 而
Arc
本身就是将数据存入堆中的(也就是变成了Box<Arc>)考虑添加
ManagedArc
, 使用Arc::into_raw
与Arc::from_raw
, 减少堆分配(释放)The text was updated successfully, but these errors were encountered: