Struct sqlx_core_oldapi::testing::FixtureSnapshot
source · pub struct FixtureSnapshot<DB> { /* private fields */ }
Expand description
A snapshot of the current state of the database.
Can be used to generate an INSERT
fixture for populating an empty database,
or in the future it may be possible to generate a fixture from the difference between
two snapshots.
Implementations§
source§impl<DB: Database> FixtureSnapshot<DB>
impl<DB: Database> FixtureSnapshot<DB>
sourcepub fn additive_fixture(&self) -> Result<Fixture<DB>, FixtureError>
pub fn additive_fixture(&self) -> Result<Fixture<DB>, FixtureError>
Generate a fixture to reproduce this snapshot from an empty database using INSERT
s.
Note that this doesn’t take into account any triggers that might modify the data before it’s stored.
The INSERT
statements are ordered on a best-effort basis to satisfy any foreign key
constraints (data from tables with no foreign keys are inserted first, then the tables
that reference those tables, and so on).
If a cycle in foreign-key constraints is detected, this returns with an error.
Auto Trait Implementations§
impl<DB> RefUnwindSafe for FixtureSnapshot<DB>where DB: RefUnwindSafe,
impl<DB> Send for FixtureSnapshot<DB>where DB: Send,
impl<DB> Sync for FixtureSnapshot<DB>where DB: Sync,
impl<DB> Unpin for FixtureSnapshot<DB>where DB: Unpin,
impl<DB> UnwindSafe for FixtureSnapshot<DB>where DB: UnwindSafe,
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