heim-common 0.0.9

Common stuff shared across heim project crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Somewhat-safe wrappers around the IOKit stuff.
//!
//! Intended to be used only across the `heim` project.
//! There are no guarantees on stability or whatever, so you shouldn't use this
//! directly in your own crate. Seriously, do not do it.

mod ffi;
mod io_iterator;
mod io_master_port;
mod io_object;
mod properties;

pub use self::io_iterator::IoIterator;
pub use self::io_master_port::IoMasterPort;
pub use self::io_object::IoObject;
pub use self::properties::DictionaryProps;