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