pub type Result<T> = Result<T, Box<dyn Error + Send + Sync>>;
A specialized result type representing the result of a migration operation
enum Result<T> { Ok(T), Err(Box<dyn Error + Send + Sync>), }
Contains the success value
Contains the error value