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