1
Fork 0

[feat] Make sys::windows::os_str::Slice repr(transparent)

This commit is contained in:
gimbles 2022-05-06 22:51:13 +05:30
parent bb1a03c4fc
commit 0a80bb43e5

View file

@ -44,7 +44,8 @@ impl fmt::Display for Buf {
} }
} }
pub struct Slice { #[repr(transparent)]
pub(crate) struct Slice {
pub inner: Wtf8, pub inner: Wtf8,
} }