pub struct MigrationErrorInfo {
pub category: String,
pub message: String,
pub is_critical: bool,
}Expand description
Information about an error that occurred during migration.
Fields§
§category: StringCategory of the error (e.g., “issues”, “git”, “api”).
message: StringError message.
is_critical: boolWhether this error is critical (blocks migration success).
Trait Implementations§
Source§impl Clone for MigrationErrorInfo
impl Clone for MigrationErrorInfo
Source§fn clone(&self) -> MigrationErrorInfo
fn clone(&self) -> MigrationErrorInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MigrationErrorInfo
impl Debug for MigrationErrorInfo
Source§impl<'de> Deserialize<'de> for MigrationErrorInfo
impl<'de> Deserialize<'de> for MigrationErrorInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MigrationErrorInfo
impl RefUnwindSafe for MigrationErrorInfo
impl Send for MigrationErrorInfo
impl Sync for MigrationErrorInfo
impl Unpin for MigrationErrorInfo
impl UnsafeUnpin for MigrationErrorInfo
impl UnwindSafe for MigrationErrorInfo
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