Skip to content
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