pub struct MigrationResult {
pub config_updated: bool,
pub oracle_report: Option<OracleReport>,
pub warnings: Vec<String>,
pub next_steps: Vec<String>,
}Expand description
The result of a migration operation
Fields§
§config_updated: boolWhether the configuration was updated
oracle_report: Option<OracleReport>Optional report about detected oracles
warnings: Vec<String>Any warnings that occurred during migration
next_steps: Vec<String>Recommended next steps for the user
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MigrationResult
impl RefUnwindSafe for MigrationResult
impl Send for MigrationResult
impl Sync for MigrationResult
impl Unpin for MigrationResult
impl UnsafeUnpin for MigrationResult
impl UnwindSafe for MigrationResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more