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