pub struct DeltaProtocol {
pub min_reader_version: i32,
pub min_writer_version: i32,
pub reader_features: Option<Vec<String>>,
pub writer_features: Option<Vec<String>>,
}Expand description
Delta table protocol specification.
Fields§
§min_reader_version: i32§min_writer_version: i32§reader_features: Option<Vec<String>>§writer_features: Option<Vec<String>>Trait Implementations§
Source§impl Clone for DeltaProtocol
impl Clone for DeltaProtocol
Source§fn clone(&self) -> DeltaProtocol
fn clone(&self) -> DeltaProtocol
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 DeltaProtocol
impl Debug for DeltaProtocol
Source§impl<'de> Deserialize<'de> for DeltaProtocol
impl<'de> Deserialize<'de> for DeltaProtocol
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
impl Eq for DeltaProtocol
Source§impl PartialEq for DeltaProtocol
impl PartialEq for DeltaProtocol
Source§impl Serialize for DeltaProtocol
impl Serialize for DeltaProtocol
impl StructuralPartialEq for DeltaProtocol
Auto Trait Implementations§
impl Freeze for DeltaProtocol
impl RefUnwindSafe for DeltaProtocol
impl Send for DeltaProtocol
impl Sync for DeltaProtocol
impl Unpin for DeltaProtocol
impl UnsafeUnpin for DeltaProtocol
impl UnwindSafe for DeltaProtocol
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