ios-core 0.1.7

High-level device API, pairing transport, and discovery for iOS devices
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! DTX protocol codec and connection manager.
//!
//! Reference: go-ios/ios/dtx_codec/

pub mod codec;
pub mod primitive;
pub mod primitive_enc;
pub mod types;

pub use codec::{
    decode_dtx_message_from_bytes, encode_ack, encode_dtx, read_dtx_frame, DtxConnection, DtxError,
};
pub use primitive_enc::{archived_object, encode_primitive_dict, PrimArg};
pub use types::{DtxMessage, DtxPayload, NSObject};