summaryrefslogtreecommitdiff
path: root/rust
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2026-02-11 17:57:54 -0800
committerMason Reed <35282038+emesare@users.noreply.github.com>2026-02-23 00:09:44 -0800
commita096d1dc942ee22826087bfd12caf3a209df24fd (patch)
tree7f6c252bc2a1863fe3bc67b1dca32cda6256ae08 /rust
parent0d5fc76a872a2c570def2fb292cf1b988fb70603 (diff)
[Rust] Impl `Send` and `Sync` for `RemoteProject`
Diffstat (limited to 'rust')
-rw-r--r--rust/src/collaboration/project.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/rust/src/collaboration/project.rs b/rust/src/collaboration/project.rs
index 5eff24b0..cfcc1db4 100644
--- a/rust/src/collaboration/project.rs
+++ b/rust/src/collaboration/project.rs
@@ -897,6 +897,9 @@ impl ToOwned for RemoteProject {
}
}
+unsafe impl Send for RemoteProject {}
+unsafe impl Sync for RemoteProject {}
+
unsafe impl RefCountable for RemoteProject {
unsafe fn inc_ref(handle: &Self) -> Ref<Self> {
Ref::new(Self {