We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Send
Sync
RemoteFile
1 parent a1bc164 commit c506cfdCopy full SHA for c506cfd
1 file changed
rust/src/collaboration/file.rs
@@ -584,6 +584,7 @@ impl PartialEq for RemoteFile {
584
self.id() == other.id()
585
}
586
587
+
588
impl Eq for RemoteFile {}
589
590
impl ToOwned for RemoteFile {
@@ -594,6 +595,9 @@ impl ToOwned for RemoteFile {
594
595
596
597
598
+unsafe impl Send for RemoteFile {}
599
+unsafe impl Sync for RemoteFile {}
600
601
unsafe impl RefCountable for RemoteFile {
602
unsafe fn inc_ref(handle: &Self) -> Ref<Self> {
603
Ref::new(Self {
0 commit comments