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