fruity__bbqsrc 0.2.0

Rusty bindings for Apple libraries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Common types across disparate modules.
//!
//! By defining a type in a single location and re-exporting it in the
//! "official" modules, the same type is compatible across modules.

#![allow(dead_code)]

#[cfg(any(feature = "app_kit", feature = "ui_kit"))]
mod ns_directional_insets;

#[cfg(any(feature = "app_kit", feature = "ui_kit"))]
pub use ns_directional_insets::*;