pub enum SchemaCheck {
Strict,
}Expand description
Write-time batch schema compatibility policy.
Variants§
Strict
Require exact schema equality with the planned schema.
Trait Implementations§
Source§impl Clone for SchemaCheck
impl Clone for SchemaCheck
Source§fn clone(&self) -> SchemaCheck
fn clone(&self) -> SchemaCheck
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 SchemaCheck
impl Debug for SchemaCheck
Source§impl Default for SchemaCheck
impl Default for SchemaCheck
Source§fn default() -> SchemaCheck
fn default() -> SchemaCheck
Returns the “default value” for a type. Read more
Source§impl Hash for SchemaCheck
impl Hash for SchemaCheck
Source§impl PartialEq for SchemaCheck
impl PartialEq for SchemaCheck
Source§fn eq(&self, other: &SchemaCheck) -> bool
fn eq(&self, other: &SchemaCheck) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SchemaCheck
impl Eq for SchemaCheck
impl StructuralPartialEq for SchemaCheck
Auto Trait Implementations§
impl Freeze for SchemaCheck
impl RefUnwindSafe for SchemaCheck
impl Send for SchemaCheck
impl Sync for SchemaCheck
impl Unpin for SchemaCheck
impl UnsafeUnpin for SchemaCheck
impl UnwindSafe for SchemaCheck
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