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