pub struct TableLevelSnapshot {
pub entity_rows: TableSnapshot,
pub forward_junctions: Vec<JunctionSnapshot>,
pub backward_junctions: Vec<JunctionSnapshot>,
}Expand description
Complete snapshot of a single entity table level: the entity rows plus all forward and backward junction tables that reference them.
Fields§
§entity_rows: TableSnapshot§forward_junctions: Vec<JunctionSnapshot>§backward_junctions: Vec<JunctionSnapshot>Trait Implementations§
Source§impl Clone for TableLevelSnapshot
impl Clone for TableLevelSnapshot
Source§fn clone(&self) -> TableLevelSnapshot
fn clone(&self) -> TableLevelSnapshot
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 Debug for TableLevelSnapshot
impl Debug for TableLevelSnapshot
Source§impl Default for TableLevelSnapshot
impl Default for TableLevelSnapshot
Source§fn default() -> TableLevelSnapshot
fn default() -> TableLevelSnapshot
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TableLevelSnapshot
impl<'de> Deserialize<'de> for TableLevelSnapshot
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 TableLevelSnapshot
impl RefUnwindSafe for TableLevelSnapshot
impl Send for TableLevelSnapshot
impl Sync for TableLevelSnapshot
impl Unpin for TableLevelSnapshot
impl UnsafeUnpin for TableLevelSnapshot
impl UnwindSafe for TableLevelSnapshot
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