From 3daaa26449c7c524d27fd449a11f8d5c94233d5e Mon Sep 17 00:00:00 2001 From: Jules Bertholet Date: Sat, 24 Sep 2022 13:22:39 -0400 Subject: [PATCH] Expand future possibilities --- text/3319-aligned-trait.md | 1 + 1 file changed, 1 insertion(+) diff --git a/text/3319-aligned-trait.md b/text/3319-aligned-trait.md index 997cdfe5ba3..97eeb10c3be 100644 --- a/text/3319-aligned-trait.md +++ b/text/3319-aligned-trait.md @@ -50,3 +50,4 @@ None that I am aware of. - Relaxing `NonNull::::dangling()`'s trait bound from `T: Sized` to `T: ?Sized + Aligned + Pointee` may be desirable once the necessary library and language features are stabilized. - `extern type`s may want to be able to implement `Aligned`. - `Aligned` may warrant an addition the next edition's prelude. +- Certain `Self: Sized` bounds in the standard library could be relaxed to `Self: Aligned`. However, this might cause backward-compatibility issues.