реализации "непрозрачного" типа?
#[repr(C)]
pub struct Foo {
_data: [u8; 0],
_marker:
core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}
Там есть следующее пояснение:
> By including at least one private field and no constructor, we create an opaque type that we can't instantiate outside of this module. (A struct with no field could be instantiated by anyone.) We also want to use this type in FFI, so we have to add #[repr(C)]. The marker ensures the compiler does not mark the struct as Send, Sync and Unpin are not applied to the struct. (*mut u8 is not Send or Sync, PhantomPinned is not Unpin)
(https://doc.rust-lang.org/nomicon/ffi.html#representing-opaque-structs)
С маркером понятно, но это поле ведь тоже приватное и его было бы достаточно или есть какие-то тонкости, которые я упускаю?
Читай https://www.geeksforgeeks.org/flexible-array-members-structure-c/.
В курсе. Но откуда инфа, что в номиконе именно это изобразить хотели? Или ты просто среагировал на "пустой массив"? На мой взгляд, не похоже. Во первых, прямо по ссылке говорится: > The structure must contain at least one more named member in addition to the flexible array member. Что не соблюдается в приведённом примере. Во вторых, если уж пытаться изображать в расте flexible array member, то логичнее это делать через DST.
Обсуждают сегодня