pub struct SchemaMigrationBoundaryFailure {
pub invariant: String,
pub detail: SchemaMigrationBoundaryFailureDetail,
}Expand description
Stable failure record for the v1 -> v2 boundary invariant.
Fields§
§invariant: StringStable invariant name for strict verifier/doctor output.
detail: SchemaMigrationBoundaryFailureDetailStructured details for the failed invariant.
Trait Implementations§
Source§impl Clone for SchemaMigrationBoundaryFailure
impl Clone for SchemaMigrationBoundaryFailure
Source§fn clone(&self) -> SchemaMigrationBoundaryFailure
fn clone(&self) -> SchemaMigrationBoundaryFailure
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<'de> Deserialize<'de> for SchemaMigrationBoundaryFailure
impl<'de> Deserialize<'de> for SchemaMigrationBoundaryFailure
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
Source§impl PartialEq for SchemaMigrationBoundaryFailure
impl PartialEq for SchemaMigrationBoundaryFailure
Source§fn eq(&self, other: &SchemaMigrationBoundaryFailure) -> bool
fn eq(&self, other: &SchemaMigrationBoundaryFailure) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SchemaMigrationBoundaryFailure
impl StructuralPartialEq for SchemaMigrationBoundaryFailure
Auto Trait Implementations§
impl Freeze for SchemaMigrationBoundaryFailure
impl RefUnwindSafe for SchemaMigrationBoundaryFailure
impl Send for SchemaMigrationBoundaryFailure
impl Sync for SchemaMigrationBoundaryFailure
impl Unpin for SchemaMigrationBoundaryFailure
impl UnsafeUnpin for SchemaMigrationBoundaryFailure
impl UnwindSafe for SchemaMigrationBoundaryFailure
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