pub struct JsStatic<T: 'static> { /* private fields */ }👎Deprecated:
use with #[wasm_bindgen(thread_local_v2)] instead
Expand description
Legacy wrapper for imported statics.
This type implements Deref to the inner type so it’s typically used as if
it were &T. Prefer #[wasm_bindgen(thread_local_v2)] and JsThreadLocal.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for JsStatic<T>
impl<T> RefUnwindSafe for JsStatic<T>
impl<T> Send for JsStatic<T>
impl<T> Sync for JsStatic<T>
impl<T> Unpin for JsStatic<T>
impl<T> UnsafeUnpin for JsStatic<T>
impl<T> UnwindSafe for JsStatic<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more