Crate glow_plug

Source

Re-exports§

pub use dotenvy;

Macros§

embed_migrations
This macro will read your migrations at compile time, and create a constant value containing an embedded list of all your migrations as available at compile time. This is useful if you would like to use Diesel’s migration infrastructure, but want to ship a single executable file (such as for embedded applications). It can also be used to apply migrations to an in memory database (Diesel does this for its own test suite).

Structs§

EmbeddedMigrations
A migration source that embeds migrations into the final binary

Traits§

Connection
A connection to a database
MigrationHarness
A migration harness is an entity which applies migration to an existing database
RunQueryDsl
Methods used to execute queries.

Attribute Macros§

test
A testing macro similar to the standard [#test] but allows for function to take a connection to a database as a parameter.