From 3e6c6da258b8a28f52fac48dd39d3087fcd2fa2a Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Thu, 28 Apr 2016 16:54:53 +0200 Subject: [PATCH] Add TROUBLE about placement new syntax --- TROUBLES.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TROUBLES.md b/TROUBLES.md index 2ec288c2..1e70caa1 100644 --- a/TROUBLES.md +++ b/TROUBLES.md @@ -30,6 +30,9 @@ - This library was designed with specialization in mind. There are several `is_compatible` trait methods that perform deep comparisons between layouts. With specialization available, these methods could be specialized as `true` for layouts that are known to always be compatible. +- Placement new syntax would make it easier and less error-prone to create buffers, as you wouldn't have to create uninitialized buffers first. + https://github.com/rust-lang/rust/issues/27779 + - https://github.com/rust-lang/rust/issues/29328 - "Source trait is private" errors when traits are declared in private modules but reexported publicly from a parent module. Not sure if that's