We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60b6fc3 commit c36f548Copy full SHA for c36f548
src/hostfxr/context.rs
@@ -19,12 +19,12 @@ use crate::{
19
};
20
21
use std::{
22
+ cell::Cell,
23
ffi::c_void,
24
fmt::{self, Debug},
25
marker::PhantomData,
26
mem::{self, ManuallyDrop, MaybeUninit},
27
ptr::NonNull,
- cell::Cell
28
29
30
#[cfg(feature = "net8_0")]
@@ -85,7 +85,7 @@ pub struct HostfxrContext<I> {
85
is_primary: bool,
86
runtime_delegates: EnumMap<hostfxr_delegate_type, OnceCell<RawFunctionPtr>>,
87
context_type: PhantomData<I>,
88
- not_sync: PhantomData<Cell<HostfxrLibrary>>
+ not_sync: PhantomData<Cell<HostfxrLibrary>>,
89
}
90
91
unsafe impl<I> Send for HostfxrContext<I> {}
0 commit comments