pub struct TableSpec {
pub schema: SchemaRef,
pub schema_spec: SchemaSpec,
pub partition_spec: PartitionSpec,
pub properties: HashMap<String, String>,
pub current_snapshot_id: Option<i64>,
}Expand description
Description of a table at a point in time.
Fields§
§schema: SchemaRef§schema_spec: SchemaSpec§partition_spec: PartitionSpec§properties: HashMap<String, String>§current_snapshot_id: Option<i64>Trait Implementations§
Source§impl<'de> Deserialize<'de> for TableSpec
impl<'de> Deserialize<'de> for TableSpec
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
Auto Trait Implementations§
impl Freeze for TableSpec
impl RefUnwindSafe for TableSpec
impl Send for TableSpec
impl Sync for TableSpec
impl Unpin for TableSpec
impl UnsafeUnpin for TableSpec
impl UnwindSafe for TableSpec
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