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
If ReprCString is analogous to Rust's String and owns its own memory, it needs a drop method just like CVec. As it is currently, passing ReprCString to the C side will leak because it has no way to free the string.
If
ReprCStringis analogous to Rust'sStringand owns its own memory, it needs a drop method just likeCVec. As it is currently, passingReprCStringto the C side will leak because it has no way to free the string.