Struct wasm_bindgen::JsStatic 
source · pub struct JsStatic<T: 'static> { /* private fields */ }Expand 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> 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