objc-encode 0.0.3

Objective-C type encoding creation and parsing in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Types for statically defined encodings.

mod array;
mod never;
mod pointer;
mod primitive;
mod structure;
mod union;

pub use self::array::Array;
pub use self::pointer::Pointer;
pub use self::primitive::Primitive;
pub use self::structure::Struct;
pub use self::union::Union;