pub struct SyncSnapshot {
pub table: String,
pub rows: Vec<Value>,
pub chunks: Option<Vec<SnapshotChunkRef>>,
pub artifacts: Option<Vec<ScopedSnapshotArtifactRef>>,
pub manifest: Option<SnapshotManifest>,
pub is_first_page: bool,
pub is_last_page: bool,
pub bootstrap_state_after: Option<BootstrapState>,
}Fields§
§table: String§rows: Vec<Value>§chunks: Option<Vec<SnapshotChunkRef>>§artifacts: Option<Vec<ScopedSnapshotArtifactRef>>§manifest: Option<SnapshotManifest>§is_first_page: bool§is_last_page: bool§bootstrap_state_after: Option<BootstrapState>Trait Implementations§
Source§impl Clone for SyncSnapshot
impl Clone for SyncSnapshot
Source§fn clone(&self) -> SyncSnapshot
fn clone(&self) -> SyncSnapshot
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 SyncSnapshot
impl Debug for SyncSnapshot
Source§impl<'de> Deserialize<'de> for SyncSnapshot
impl<'de> Deserialize<'de> for SyncSnapshot
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 Freeze for SyncSnapshot
impl RefUnwindSafe for SyncSnapshot
impl Send for SyncSnapshot
impl Sync for SyncSnapshot
impl Unpin for SyncSnapshot
impl UnsafeUnpin for SyncSnapshot
impl UnwindSafe for SyncSnapshot
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