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