pub type Result<T> = Result<T, MigrationError>;
Expand description
Result type alias for migration operations
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(MigrationError),
}
pub type Result<T> = Result<T, MigrationError>;
Result type alias for migration operations
pub enum Result<T> {
Ok(T),
Err(MigrationError),
}