pub struct JsStatic<T: 'static> { /* private fields */ }👎Deprecated: use with
#[wasm_bindgen(thread_local_v2)] 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> 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
Source§impl<S, T> Upcast<T> for S
impl<S, T> Upcast<T> for S
Source§fn upcast(&self) -> &T
fn upcast(&self) -> &T
Perform a zero-cost type-safe upcast to a wider ref type within the Wasm
bindgen generics type system. Read more
Source§fn upcast_into(self) -> Twhere
Self: Sized + ErasableGeneric,
T: Sized + ErasableGeneric<Repr = <Self as ErasableGeneric>::Repr>,
fn upcast_into(self) -> Twhere
Self: Sized + ErasableGeneric,
T: Sized + ErasableGeneric<Repr = <Self as ErasableGeneric>::Repr>,
Perform a zero-cost type-safe upcast to a wider type within the Wasm
bindgen generics type system. Read more