pub enum CompatVerdict {
Identical,
BackwardCompatible,
ForwardCompatible,
Incompatible,
}Expand description
High-level comparison result between two schemas.
Variants§
Identical
Exact field set, order, dtypes, and semantics.
BackwardCompatible
Reader can consume a richer producer by dropping additive fields.
ForwardCompatible
Reader can accept a poorer producer by filling defaults.
Incompatible
Major version or field contracts conflict.
Trait Implementations§
Source§impl Clone for CompatVerdict
impl Clone for CompatVerdict
Source§fn clone(&self) -> CompatVerdict
fn clone(&self) -> CompatVerdict
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 CompatVerdict
impl Debug for CompatVerdict
Source§impl Hash for CompatVerdict
impl Hash for CompatVerdict
Source§impl PartialEq for CompatVerdict
impl PartialEq for CompatVerdict
Source§fn eq(&self, other: &CompatVerdict) -> bool
fn eq(&self, other: &CompatVerdict) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CompatVerdict
impl Eq for CompatVerdict
impl StructuralPartialEq for CompatVerdict
Auto Trait Implementations§
impl Freeze for CompatVerdict
impl RefUnwindSafe for CompatVerdict
impl Send for CompatVerdict
impl Sync for CompatVerdict
impl Unpin for CompatVerdict
impl UnsafeUnpin for CompatVerdict
impl UnwindSafe for CompatVerdict
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