pub type IpcSendResult = Result<(), IpcError>;
pub enum IpcSendResult { Ok(()), Err(IpcError), }
Contains the success value
Contains the error value