diff options
| author | Mason Reed <mason@vector35.com> | 2026-02-11 17:57:54 -0800 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2026-02-23 00:09:44 -0800 |
| commit | a096d1dc942ee22826087bfd12caf3a209df24fd (patch) | |
| tree | 7f6c252bc2a1863fe3bc67b1dca32cda6256ae08 /rust/src/collaboration | |
| parent | 0d5fc76a872a2c570def2fb292cf1b988fb70603 (diff) | |
[Rust] Impl `Send` and `Sync` for `RemoteProject`
Diffstat (limited to 'rust/src/collaboration')
| -rw-r--r-- | rust/src/collaboration/project.rs | 3 |
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 { |
