pub enum Compatibility {
Backward,
Forward,
Full,
None,
}Expand description
Compatibility mode for schema evolution
Variants§
Backward
New schema must be readable by old consumers (new fields optional)
Forward
Old events must be readable by new consumers (no field removal)
Full
Both backward and forward compatible
None
No compatibility checks
Trait Implementations§
Source§impl Clone for Compatibility
impl Clone for Compatibility
Source§fn clone(&self) -> Compatibility
fn clone(&self) -> Compatibility
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 Compatibility
impl Debug for Compatibility
Source§impl Default for Compatibility
impl Default for Compatibility
Source§fn default() -> Compatibility
fn default() -> Compatibility
Returns the “default value” for a type. Read more
Source§impl PartialEq for Compatibility
impl PartialEq for Compatibility
impl Copy for Compatibility
impl Eq for Compatibility
impl StructuralPartialEq for Compatibility
Auto Trait Implementations§
impl Freeze for Compatibility
impl RefUnwindSafe for Compatibility
impl Send for Compatibility
impl Sync for Compatibility
impl Unpin for Compatibility
impl UnsafeUnpin for Compatibility
impl UnwindSafe for Compatibility
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