pub struct ClaudeMemTableReconciliation {
pub table: String,
pub source_rows: usize,
pub read_events: usize,
pub planned_events: usize,
pub imported_events: usize,
pub already_present_events: usize,
pub skipped_source_rows: usize,
pub limit_per_table: Option<usize>,
pub complete: bool,
}Fields§
§table: String§source_rows: usize§read_events: usize§planned_events: usize§imported_events: usize§already_present_events: usize§skipped_source_rows: usize§limit_per_table: Option<usize>§complete: boolTrait Implementations§
Source§impl Clone for ClaudeMemTableReconciliation
impl Clone for ClaudeMemTableReconciliation
Source§fn clone(&self) -> ClaudeMemTableReconciliation
fn clone(&self) -> ClaudeMemTableReconciliation
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 ClaudeMemTableReconciliation
impl Debug for ClaudeMemTableReconciliation
Source§impl<'de> Deserialize<'de> for ClaudeMemTableReconciliation
impl<'de> Deserialize<'de> for ClaudeMemTableReconciliation
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 ClaudeMemTableReconciliation
Source§impl PartialEq for ClaudeMemTableReconciliation
impl PartialEq for ClaudeMemTableReconciliation
Source§fn eq(&self, other: &ClaudeMemTableReconciliation) -> bool
fn eq(&self, other: &ClaudeMemTableReconciliation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClaudeMemTableReconciliation
Auto Trait Implementations§
impl Freeze for ClaudeMemTableReconciliation
impl RefUnwindSafe for ClaudeMemTableReconciliation
impl Send for ClaudeMemTableReconciliation
impl Sync for ClaudeMemTableReconciliation
impl Unpin for ClaudeMemTableReconciliation
impl UnsafeUnpin for ClaudeMemTableReconciliation
impl UnwindSafe for ClaudeMemTableReconciliation
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