From a096d1dc942ee22826087bfd12caf3a209df24fd Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Wed, 11 Feb 2026 17:57:54 -0800 Subject: [Rust] Impl `Send` and `Sync` for `RemoteProject` --- rust/src/collaboration/project.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'rust/src') 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 { Ref::new(Self { -- cgit v1.3.1