-
Notifications
You must be signed in to change notification settings - Fork 9
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
Generalize the Write impl for Vec<u8>
to Vec<u8, A>
#86
Comments
Please go ahead, I think I simply forgot to implement it. 🙂 |
Excellent — I created a PR over at rust-lang/rust#82862! |
…r=TimDiekmann Generalize Write impl for Vec<u8> to Vec<u8, A> As discussed in the [issue tracker for the wg-allocators working group][1], updating this impl for allocator support was most likely just forgotten previously. This PR fixes this. r? `@TimDiekmann` [1]: rust-lang/wg-allocators#86
…r=TimDiekmann Generalize Write impl for Vec<u8> to Vec<u8, A> As discussed in the [issue tracker for the wg-allocators working group][1], updating this impl for allocator support was most likely just forgotten previously. This PR fixes this. r? ``@TimDiekmann`` [1]: rust-lang/wg-allocators#86
…r=TimDiekmann Generalize Write impl for Vec<u8> to Vec<u8, A> As discussed in the [issue tracker for the wg-allocators working group][1], updating this impl for allocator support was most likely just forgotten previously. This PR fixes this. r? ```@TimDiekmann``` [1]: rust-lang/wg-allocators#86
…r=TimDiekmann Generalize Write impl for Vec<u8> to Vec<u8, A> As discussed in the [issue tracker for the wg-allocators working group][1], updating this impl for allocator support was most likely just forgotten previously. This PR fixes this. r? ````@TimDiekmann```` [1]: rust-lang/wg-allocators#86
…r=TimDiekmann Generalize Write impl for Vec<u8> to Vec<u8, A> As discussed in the [issue tracker for the wg-allocators working group][1], updating this impl for allocator support was most likely just forgotten previously. This PR fixes this. r? `````@TimDiekmann````` [1]: rust-lang/wg-allocators#86
Aaaand it's merged! I'd like to use this chance to thank you (and everyone else involved with this!) for your work on |
I think we need to check if we have other forgotten impls. A simple way will be to just remove the default type for |
I'd like to generalize the
Write
impl forVec<u8>
toVec<u8, A>
. Is there any reason for not doing this? I suspect that this impl might simply have been forgotten because it lives in theio
module rather than by the other trait impls forVec
?The text was updated successfully, but these errors were encountered: