pub struct DeltaLoadTableResponse {
pub metadata: DeltaTableMetadata,
pub commits: Option<Vec<DeltaCommit>>,
pub uniform: Option<DeltaUniformMetadata>,
pub latest_table_version: Option<i64>,
}Expand description
Response from loadTable / createTable / updateTable.
Fields§
§metadata: DeltaTableMetadata§commits: Option<Vec<DeltaCommit>>All unbackfilled CCv2 commits.
uniform: Option<DeltaUniformMetadata>§latest_table_version: Option<i64>The latest ratified table version tracked by the server, including data-only commits.
Trait Implementations§
Source§impl Clone for DeltaLoadTableResponse
impl Clone for DeltaLoadTableResponse
Source§fn clone(&self) -> DeltaLoadTableResponse
fn clone(&self) -> DeltaLoadTableResponse
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 DeltaLoadTableResponse
impl Debug for DeltaLoadTableResponse
Source§impl<'de> Deserialize<'de> for DeltaLoadTableResponse
impl<'de> Deserialize<'de> for DeltaLoadTableResponse
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 for DeltaLoadTableResponse
impl PartialEq for DeltaLoadTableResponse
Source§impl Serialize for DeltaLoadTableResponse
impl Serialize for DeltaLoadTableResponse
impl StructuralPartialEq for DeltaLoadTableResponse
Auto Trait Implementations§
impl Freeze for DeltaLoadTableResponse
impl RefUnwindSafe for DeltaLoadTableResponse
impl Send for DeltaLoadTableResponse
impl Sync for DeltaLoadTableResponse
impl Unpin for DeltaLoadTableResponse
impl UnsafeUnpin for DeltaLoadTableResponse
impl UnwindSafe for DeltaLoadTableResponse
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