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