We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3feaf74 commit 75f4b93Copy full SHA for 75f4b93
rust/src/language_representation.rs
@@ -123,6 +123,9 @@ pub struct CoreLanguageRepresentationFunctionType {
123
handle: NonNull<BNLanguageRepresentationFunctionType>,
124
}
125
126
+unsafe impl Send for CoreLanguageRepresentationFunctionType {}
127
+unsafe impl Sync for CoreLanguageRepresentationFunctionType {}
128
+
129
impl CoreLanguageRepresentationFunctionType {
130
pub(crate) unsafe fn from_raw(handle: NonNull<BNLanguageRepresentationFunctionType>) -> Self {
131
Self { handle }
0 commit comments