use core::{
cell::UnsafeCell,
marker::{PhantomData, PhantomPinned},
};
/// An opaque type. /// /// This is used to avoid problems with e.g. getting references from /// `CFArray` (we can't use `c_void` as the default type, as `&c_void` would /// be incorrect). #[repr(C)] #[doc(hidden)] #[allow(dead_code, unreachable_pub)] pubstruct Opaque {
inner: [u8; 0],
_p: UnsafeCell<PhantomData<(*const UnsafeCell<()>, PhantomPinned)>>,
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.