summaryrefslogtreecommitdiff
path: root/rust/src/project.rs
diff options
context:
space:
mode:
authorJosh Ferrell <josh@vector35.com>2025-09-29 14:53:05 -0400
committerJosh Ferrell <josh@vector35.com>2025-09-29 15:08:06 -0400
commitfd5a89e174e01b0adb089dcf8f6da36cf5008443 (patch)
tree25f66fa722f8759a817a053580f2461309ac448e /rust/src/project.rs
parent4870c90e6fbf31898c57db04f97c69f647157fd5 (diff)
Fix rust warnings about lifetimes introduced by 1.89.0
Diffstat (limited to 'rust/src/project.rs')
-rw-r--r--rust/src/project.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/project.rs b/rust/src/project.rs
index c268d613..4f91010d 100644
--- a/rust/src/project.rs
+++ b/rust/src/project.rs
@@ -612,7 +612,7 @@ impl Project {
/// }
/// ```
// NOTE mut is used here, so only one lock can be acquired at once
- pub fn bulk_operation(&mut self) -> Result<ProjectBulkOperationLock, ()> {
+ pub fn bulk_operation(&mut self) -> Result<ProjectBulkOperationLock<'_>, ()> {
Ok(ProjectBulkOperationLock::lock(self))
}
}