Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for a breaking change in the Rust compiler. #1

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ impl DBImpl {
**Parameter**:
- `table_name`: Name of the table to delete from.
*/
pub fn delete<'until_build, 'post_query>(
pub fn delete<'until_build, 'post_query: 'until_build>(
&self,
table_name: &'until_build str,
) -> impl Delete<'until_build, 'post_query> {
Expand All @@ -405,7 +405,7 @@ impl DBImpl {
**Parameter**:
- `table_name`: Name of the table the updates should be executed for.
*/
pub fn update<'until_build, 'post_query>(
pub fn update<'until_build, 'post_query: 'until_build>(
&self,
table_name: &'until_build str,
) -> impl Update<'until_build, 'post_query> {
Expand Down