std/os/darwin/objc.rs
1//! Defines types and macros for Objective-C interoperability.
2//!
3//! This module re-exports all the items in [`core::os::darwin::objc`].
4//!
5//! [`core::os::darwin::objc`]: ../../../../core/os/darwin/objc/index.html "mod core::os::darwin::objc"
6
7#![unstable(feature = "darwin_objc", issue = "145496")]
8
9// We can't generate an intra-doc link for this automatically since `core::os::darwin` isn't
10// compiled into `core` on every platform even though it's documented on every platform.
11// We just link to it directly in the module documentation above instead.
12#[cfg(not(doc))]
13pub use core::os::darwin::objc::*;