diff --git a/src/ipc.rs b/src/ipc.rs index 85016e39..77cc48f1 100644 --- a/src/ipc.rs +++ b/src/ipc.rs @@ -665,9 +665,9 @@ impl IpcSelectionResult { /// [to]: #method.to #[derive(PartialEq)] pub struct IpcMessage { - pub data: Vec, - pub os_ipc_channels: Vec, - pub os_ipc_shared_memory_regions: Vec, + pub(crate) data: Vec, + pub(crate) os_ipc_channels: Vec, + pub(crate) os_ipc_shared_memory_regions: Vec, } impl IpcMessage {