pub struct CompatibilityReport {
pub changes: Vec<SchemaChange>,
pub compatibility_score: u8,
pub is_compatible: bool,
pub issues: Vec<CompatibilityIssue>,
pub metadata: HashMap<String, String>,
}
Expand description
Represents compatibility analysis results
Fields§
§changes: Vec<SchemaChange>
List of detected changes
compatibility_score: u8
Overall compatibility score (0-100)
is_compatible: bool
Whether the schema is compatible
issues: Vec<CompatibilityIssue>
List of compatibility issues
metadata: HashMap<String, String>
Additional metadata about the comparison
Trait Implementations§
Source§impl Clone for CompatibilityReport
impl Clone for CompatibilityReport
Source§fn clone(&self) -> CompatibilityReport
fn clone(&self) -> CompatibilityReport
Returns a duplicate of the value. Read more
1.0.0 · 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 CompatibilityReport
impl Debug for CompatibilityReport
Source§impl<'de> Deserialize<'de> for CompatibilityReport
impl<'de> Deserialize<'de> for CompatibilityReport
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 CompatibilityReport
impl RefUnwindSafe for CompatibilityReport
impl Send for CompatibilityReport
impl Sync for CompatibilityReport
impl Unpin for CompatibilityReport
impl UnwindSafe for CompatibilityReport
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