usecrate::DbBackend;modentity;/// This is a helper struct to convert [`EntityTrait`](crate::EntityTrait)
/// into different [`sea_query`](crate::sea_query) statements.
#[derive(Debug)]pubstructSchema{backend: DbBackend,
}implSchema{/// Create a helper for a specific database backend
pubfnnew(backend: DbBackend)->Self{Self{ backend }}}