Struct delta_sharing_server::protocol::table::TableMetadata
source · pub struct TableMetadata {
pub version: u64,
pub protocol: Protocol,
pub metadata: Metadata,
}Expand description
Table metadata for a given table version.
Fields§
§version: u64Table version.
protocol: ProtocolMinimum required table reader protocol implementation.
metadata: MetadataTable metadata
Trait Implementations§
source§impl Clone for TableMetadata
impl Clone for TableMetadata
source§fn clone(&self) -> TableMetadata
fn clone(&self) -> TableMetadata
Returns a copy 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 TableMetadata
impl Debug for TableMetadata
source§impl<'de> Deserialize<'de> for TableMetadata
impl<'de> Deserialize<'de> for TableMetadata
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
source§impl PartialEq<TableMetadata> for TableMetadata
impl PartialEq<TableMetadata> for TableMetadata
source§fn eq(&self, other: &TableMetadata) -> bool
fn eq(&self, other: &TableMetadata) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for TableMetadata
impl Serialize for TableMetadata
impl StructuralPartialEq for TableMetadata
Auto Trait Implementations§
impl RefUnwindSafe for TableMetadata
impl Send for TableMetadata
impl Sync for TableMetadata
impl Unpin for TableMetadata
impl UnwindSafe for TableMetadata
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