pub struct DeltaCommit {
pub version: i64,
pub timestamp: i64,
pub file_name: String,
pub file_size: i64,
pub file_modification_timestamp: i64,
}Expand description
Delta commit information for CCv2.
Fields§
§version: i64§timestamp: i64In-commit timestamp, in epoch milliseconds.
file_name: StringUUID-based commit file name.
file_size: i64§file_modification_timestamp: i64File modification timestamp, in epoch milliseconds.
Trait Implementations§
Source§impl Clone for DeltaCommit
impl Clone for DeltaCommit
Source§fn clone(&self) -> DeltaCommit
fn clone(&self) -> DeltaCommit
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 DeltaCommit
impl Debug for DeltaCommit
Source§impl<'de> Deserialize<'de> for DeltaCommit
impl<'de> Deserialize<'de> for DeltaCommit
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 DeltaCommit
Source§impl PartialEq for DeltaCommit
impl PartialEq for DeltaCommit
Source§impl Serialize for DeltaCommit
impl Serialize for DeltaCommit
impl StructuralPartialEq for DeltaCommit
Auto Trait Implementations§
impl Freeze for DeltaCommit
impl RefUnwindSafe for DeltaCommit
impl Send for DeltaCommit
impl Sync for DeltaCommit
impl Unpin for DeltaCommit
impl UnsafeUnpin for DeltaCommit
impl UnwindSafe for DeltaCommit
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