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