pub struct SqliteProjectionRefresh {Show 18 fields
pub scope: String,
pub projection_version: String,
pub source_watermark: Option<String>,
pub tombstoned_nodes: Vec<String>,
pub tombstoned_edges: Vec<String>,
pub upserted_nodes: usize,
pub upserted_edges: usize,
pub unchanged_nodes: usize,
pub unchanged_edges: usize,
pub upserted_properties: usize,
pub unchanged_properties: usize,
pub deleted_properties: usize,
pub deleted_nodes: usize,
pub deleted_edges: usize,
pub pruned_tombstones: usize,
pub file_size_bytes_before: Option<u64>,
pub file_size_bytes_after: Option<u64>,
pub phase_timings: Vec<SqliteProjectionRefreshPhase>,
}Fields§
§scope: String§projection_version: String§source_watermark: Option<String>§tombstoned_nodes: Vec<String>§tombstoned_edges: Vec<String>§upserted_nodes: usize§upserted_edges: usize§unchanged_nodes: usize§unchanged_edges: usize§upserted_properties: usize§unchanged_properties: usize§deleted_properties: usize§deleted_nodes: usize§deleted_edges: usize§pruned_tombstones: usize§file_size_bytes_before: Option<u64>§file_size_bytes_after: Option<u64>§phase_timings: Vec<SqliteProjectionRefreshPhase>Trait Implementations§
Source§impl Clone for SqliteProjectionRefresh
impl Clone for SqliteProjectionRefresh
Source§fn clone(&self) -> SqliteProjectionRefresh
fn clone(&self) -> SqliteProjectionRefresh
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 SqliteProjectionRefresh
impl Debug for SqliteProjectionRefresh
Source§impl<'de> Deserialize<'de> for SqliteProjectionRefresh
impl<'de> Deserialize<'de> for SqliteProjectionRefresh
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 SqliteProjectionRefresh
Source§impl PartialEq for SqliteProjectionRefresh
impl PartialEq for SqliteProjectionRefresh
Source§fn eq(&self, other: &SqliteProjectionRefresh) -> bool
fn eq(&self, other: &SqliteProjectionRefresh) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SqliteProjectionRefresh
impl Serialize for SqliteProjectionRefresh
impl StructuralPartialEq for SqliteProjectionRefresh
Auto Trait Implementations§
impl Freeze for SqliteProjectionRefresh
impl RefUnwindSafe for SqliteProjectionRefresh
impl Send for SqliteProjectionRefresh
impl Sync for SqliteProjectionRefresh
impl Unpin for SqliteProjectionRefresh
impl UnsafeUnpin for SqliteProjectionRefresh
impl UnwindSafe for SqliteProjectionRefresh
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