Skip to content

Commit b9fad85

Browse files
committed
[Rust] Impl Send and Sync for RemoteProject
1 parent 2c6cca5 commit b9fad85

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

rust/src/collaboration/project.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -897,6 +897,9 @@ impl ToOwned for RemoteProject {
897897
}
898898
}
899899

900+
unsafe impl Send for RemoteProject {}
901+
unsafe impl Sync for RemoteProject {}
902+
900903
unsafe impl RefCountable for RemoteProject {
901904
unsafe fn inc_ref(handle: &Self) -> Ref<Self> {
902905
Ref::new(Self {

0 commit comments

Comments
 (0)