pub struct RecoveryCheckpoint<C> {
pub catalog: C,
pub storage_data: StorageCheckpointData,
pub commit_ts: u64,
pub table_versions: HashMap<String, u64>,
}Fields§
§catalog: C§storage_data: StorageCheckpointData§commit_ts: u64§table_versions: HashMap<String, u64>Implementations§
Trait Implementations§
Source§impl<C: Clone> Clone for RecoveryCheckpoint<C>
impl<C: Clone> Clone for RecoveryCheckpoint<C>
Source§fn clone(&self) -> RecoveryCheckpoint<C>
fn clone(&self) -> RecoveryCheckpoint<C>
Returns a duplicate 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<C: Debug> Debug for RecoveryCheckpoint<C>
impl<C: Debug> Debug for RecoveryCheckpoint<C>
Source§impl<'de, C> Deserialize<'de> for RecoveryCheckpoint<C>where
C: DeserializeOwned,
impl<'de, C> Deserialize<'de> for RecoveryCheckpoint<C>where
C: DeserializeOwned,
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<C> Freeze for RecoveryCheckpoint<C>where
C: Freeze,
impl<C> RefUnwindSafe for RecoveryCheckpoint<C>where
C: RefUnwindSafe,
impl<C> Send for RecoveryCheckpoint<C>where
C: Send,
impl<C> Sync for RecoveryCheckpoint<C>where
C: Sync,
impl<C> Unpin for RecoveryCheckpoint<C>where
C: Unpin,
impl<C> UnsafeUnpin for RecoveryCheckpoint<C>where
C: UnsafeUnpin,
impl<C> UnwindSafe for RecoveryCheckpoint<C>where
C: UnwindSafe,
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