-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a deinitialize method to the Alloc
trait
#1
Comments
hmm. This could have been handled by the old vector design (where the heap-allocated object carried the length and capacity), but that ship has sailed. So yes, it seems like types like |
Add drain, and link to WIP implementations.
Mention ChanReader/ChanWriter will be unstable
Modify read_full/read_exact RFC
Add specifics around feature gates
Explicit type punning alternative.
A lot of misc changes to extern types
rfc, const-repeat-expr: notes on is_rvalue_promotable(expr)
RFC 2582: Fix typo (must not -> need not)
…olicy Clarify that audits evaluate both moderation policies and their application
@huonw pointed out that types like
Vec
that peddle in deinitialized memory must have a way to eliminate stray references. The allocator can initialize memory when it is given out initially, but can't handle the case where data was pushed and then popped.cc @pnkfelix
The text was updated successfully, but these errors were encountered: