diff options
Diffstat (limited to 'rust/src')
| -rw-r--r-- | rust/src/collaboration/folder.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/rust/src/collaboration/folder.rs b/rust/src/collaboration/folder.rs index 1b2fee5a..3ae84b64 100644 --- a/rust/src/collaboration/folder.rs +++ b/rust/src/collaboration/folder.rs @@ -1,6 +1,6 @@ -use std::fmt::Debug; use super::{Remote, RemoteProject}; use binaryninjacore_sys::*; +use std::fmt::Debug; use std::ptr::NonNull; use crate::project::folder::ProjectFolder; @@ -152,6 +152,9 @@ impl ToOwned for RemoteFolder { } } +unsafe impl Send for RemoteFolder {} +unsafe impl Sync for RemoteFolder {} + unsafe impl RefCountable for RemoteFolder { unsafe fn inc_ref(handle: &Self) -> Ref<Self> { Ref::new(Self { |
