pub struct V1FixtureReport {
pub expected_schema_version: u16,
pub observed_row_schema_versions: Vec<u16>,
pub table_counts: Vec<FixtureTableCount>,
pub event_chain_head: Option<String>,
pub applied_migrations: Vec<String>,
}Expand description
Read-only snapshot of a v1 store fixture before schema v2 migration.
Fields§
§expected_schema_version: u16Expected schema version for this pre-cutover binary.
observed_row_schema_versions: Vec<u16>Distinct row-level schema versions observed in events and traces.
table_counts: Vec<FixtureTableCount>Selected table counts needed by the v2 fixture matrix.
event_chain_head: Option<String>Current event hash-chain head, if the fixture contains events.
applied_migrations: Vec<String>Migration rows already recorded in _migrations.
Trait Implementations§
Source§impl Clone for V1FixtureReport
impl Clone for V1FixtureReport
Source§fn clone(&self) -> V1FixtureReport
fn clone(&self) -> V1FixtureReport
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 V1FixtureReport
impl Debug for V1FixtureReport
Source§impl PartialEq for V1FixtureReport
impl PartialEq for V1FixtureReport
Source§fn eq(&self, other: &V1FixtureReport) -> bool
fn eq(&self, other: &V1FixtureReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for V1FixtureReport
impl StructuralPartialEq for V1FixtureReport
Auto Trait Implementations§
impl Freeze for V1FixtureReport
impl RefUnwindSafe for V1FixtureReport
impl Send for V1FixtureReport
impl Sync for V1FixtureReport
impl Unpin for V1FixtureReport
impl UnsafeUnpin for V1FixtureReport
impl UnwindSafe for V1FixtureReport
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