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

Generate a fixture to reproduce this snapshot from an empty database using INSERTs.

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

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.