File tree 4 files changed +30
-0
lines changed
4 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -195,6 +195,12 @@ pub struct CString {
195
195
/// [`from_ptr`]: #method.from_ptr
196
196
#[ derive( Hash ) ]
197
197
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
198
+ // FIXME:
199
+ // `fn from` in `impl From<&CStr> for Box<CStr>` current implementation relies
200
+ // on `CStr` being layout-compatible with `[u8]`.
201
+ // When attribute privacy is implemented, `CStr` should be annotated as `#[repr(transparent)]`.
202
+ // Anyway, `CStr` representation and layout are considered implementation detail, are
203
+ // not documented and must not be relied upon.
198
204
pub struct CStr {
199
205
// FIXME: this should not be represented with a DST slice but rather with
200
206
// just a raw `c_char` along with some form of marker to make
Original file line number Diff line number Diff line change @@ -97,6 +97,12 @@ pub struct OsString {
97
97
/// [`String`]: ../string/struct.String.html
98
98
/// [conversions]: index.html#conversions
99
99
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
100
+ // FIXME:
101
+ // `OsStr::from_inner` current implementation relies
102
+ // on `OsStr` being layout-compatible with `Slice`.
103
+ // When attribute privacy is implemented, `OsStr` should be annotated as `#[repr(transparent)]`.
104
+ // Anyway, `OsStr` representation and layout are considered implementation detail, are
105
+ // not documented and must not be relied upon.
100
106
pub struct OsStr {
101
107
inner : Slice
102
108
}
Original file line number Diff line number Diff line change @@ -1123,6 +1123,12 @@ impl FusedIterator for Ancestors<'_> {}
1123
1123
/// Which method works best depends on what kind of situation you're in.
1124
1124
#[ derive( Clone ) ]
1125
1125
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1126
+ // FIXME:
1127
+ // `PathBuf::as_mut_vec` current implementation relies
1128
+ // on `PathBuf` being layout-compatible with `Vec<u8>`.
1129
+ // When attribute privacy is implemented, `PathBuf` should be annotated as `#[repr(transparent)]`.
1130
+ // Anyway, `PathBuf` representation and layout are considered implementation detail, are
1131
+ // not documented and must not be relied upon.
1126
1132
pub struct PathBuf {
1127
1133
inner : OsString ,
1128
1134
}
@@ -1745,6 +1751,12 @@ impl AsRef<OsStr> for PathBuf {
1745
1751
/// assert_eq!(extension, Some(OsStr::new("txt")));
1746
1752
/// ```
1747
1753
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1754
+ // FIXME:
1755
+ // `Path::new` current implementation relies
1756
+ // on `Path` being layout-compatible with `OsStr`.
1757
+ // When attribute privacy is implemented, `Path` should be annotated as `#[repr(transparent)]`.
1758
+ // Anyway, `Path` representation and layout are considered implementation detail, are
1759
+ // not documented and must not be relied upon.
1748
1760
pub struct Path {
1749
1761
inner : OsStr ,
1750
1762
}
Original file line number Diff line number Diff line change @@ -18,6 +18,12 @@ pub(crate) struct Buf {
18
18
pub inner : Vec < u8 >
19
19
}
20
20
21
+ // FIXME:
22
+ // `Buf::as_slice` current implementation relies
23
+ // on `Slice` being layout-compatible with `[u8]`.
24
+ // When attribute privacy is implemented, `Slice` should be annotated as `#[repr(transparent)]`.
25
+ // Anyway, `Slice` representation and layout are considered implementation detail, are
26
+ // not documented and must not be relied upon.
21
27
pub ( crate ) struct Slice {
22
28
pub inner : [ u8 ]
23
29
}
You can’t perform that action at this time.
0 commit comments