Skip to content

Commit eb37fac

Browse files
committed
Implement XPC macro
1 parent b897c3a commit eb37fac

3 files changed

Lines changed: 611 additions & 1 deletion

File tree

idevice/src/xpc/format.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ impl TryFrom<u32> for XPCType {
9999

100100
pub type Dictionary = IndexMap<String, XPCObject>;
101101

102-
#[derive(Debug, Clone, Serialize, Deserialize)]
102+
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
103103
pub enum XPCObject {
104104
Bool(bool),
105105
Dictionary(Dictionary),

idevice/src/xpc/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ use crate::{IdeviceError, ReadWrite};
99

1010
mod format;
1111
mod http2;
12+
pub mod xpc_macro;
1213

1314
use format::XPCFlag;
1415
pub use format::{Dictionary, XPCMessage, XPCObject};

0 commit comments

Comments
 (0)