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