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