pub type MigrateResult<T> = Result<T, Error>;
Expand description
Type alias for Result<T, Error>
used throughout the library.
This provides a convenient shorthand for functions that can return migration errors.
Aliased Type§
pub enum MigrateResult<T> {
Ok(T),
Err(Error),
}