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