pub trait Defaultable { /// Creates an entity in the database. /// /// # Errors /// Returns any error the database may have encountered fn create( &self, pool: &sqlx::PgPool, ) -> impl std::future::Future> + Send; }