mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Fix callbacks lifetime
This commit is contained in:
parent
30f8c8c502
commit
612158507e
@ -412,7 +412,7 @@ impl Connection {
|
||||
) -> Result<()>
|
||||
where
|
||||
A: RefUnwindSafe + UnwindSafe,
|
||||
D: Aggregate<A, T>,
|
||||
D: Aggregate<A, T> + 'static,
|
||||
T: ToSql,
|
||||
{
|
||||
self.db
|
||||
@ -437,7 +437,7 @@ impl Connection {
|
||||
) -> Result<()>
|
||||
where
|
||||
A: RefUnwindSafe + UnwindSafe,
|
||||
W: WindowAggregate<A, T>,
|
||||
W: WindowAggregate<A, T> + 'static,
|
||||
T: ToSql,
|
||||
{
|
||||
self.db
|
||||
|
Loading…
Reference in New Issue
Block a user