pub struct JsStatic<T>where
T: 'static,{ /* private fields */ }
👎Deprecated: use with
#[wasm_bindgen(thread_local)]
insteadExpand description
Wrapper type for imported statics.
This type is used whenever a static
is imported from a JS module, for
example this import:
ⓘ
#[wasm_bindgen]
extern "C" {
static console: JsValue;
}
will generate in Rust a value that looks like:
ⓘ
static console: JsStatic<JsValue> = ...;
This type implements Deref
to the inner type so it’s typically used as if
it were &T
.
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> 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