[−][src]Struct js_sys::WeakMap
Implementations
impl WeakMap
[src][−]
pub fn new() -> WeakMap
[src][−]
The WeakMap
object is a collection of key/value pairs in which the
keys are weakly referenced. The keys must be objects and the values can
be arbitrary values.
impl WeakMap
[src][−]
pub fn set(&self, key: &Object, value: &JsValue) -> WeakMap
[src][−]
impl WeakMap
[src][−]
pub fn get(&self, key: &Object) -> JsValue
[src][−]
The get()
method returns a specified by key element
from a WeakMap
object.
impl WeakMap
[src][−]
pub fn has(&self, key: &Object) -> bool
[src][−]
The has()
method returns a boolean indicating whether an element with
the specified key exists in the WeakMap
object or not.
impl WeakMap
[src][−]
pub fn delete(&self, key: &Object) -> bool
[src][−]
The delete()
method removes the specified element from a WeakMap
object.
Methods from Deref<Target = Object>
pub fn constructor(&self) -> Function
[src][−]
The constructor property returns a reference to the Object
constructor
function that created the instance object.
pub fn has_own_property(&self, property: &JsValue) -> bool
[src][−]
The hasOwnProperty()
method returns a boolean indicating whether the
object has the specified property as its own property (as opposed to
inheriting it).
pub fn is_prototype_of(&self, value: &JsValue) -> bool
[src][−]
The isPrototypeOf()
method checks if an object exists in another
object's prototype chain.
pub fn property_is_enumerable(&self, property: &JsValue) -> bool
[src][−]
The propertyIsEnumerable()
method returns a Boolean indicating
whether the specified property is enumerable.
pub fn to_locale_string(&self) -> JsString
[src][−]
The toLocaleString()
method returns a string representing the object.
This method is meant to be overridden by derived objects for
locale-specific purposes.
pub fn to_string(&self) -> JsString
[src][−]
The toString()
method returns a string representing the object.
pub fn value_of(&self) -> Object
[src][−]
The valueOf()
method returns the primitive value of the
specified object.
Trait Implementations
impl AsRef<JsValue> for WeakMap
[src][+]
impl AsRef<Object> for WeakMap
[src][+]
impl AsRef<WeakMap> for WeakMap
[src][+]
impl Clone for WeakMap
[src][+]
impl Debug for WeakMap
[src][+]
impl Deref for WeakMap
[src][+]
impl Eq for WeakMap
[src]
impl From<JsValue> for WeakMap
[src][+]
impl From<WeakMap> for JsValue
[src][+]
impl From<WeakMap> for Object
[src][+]
impl FromWasmAbi for WeakMap
[src][+]
impl IntoWasmAbi for WeakMap
[src][+]
impl<'a> IntoWasmAbi for &'a WeakMap
[src][+]
impl JsCast for WeakMap
[src][+]
impl OptionFromWasmAbi for WeakMap
[src][+]
impl OptionIntoWasmAbi for WeakMap
[src][+]
impl<'a> OptionIntoWasmAbi for &'a WeakMap
[src][+]
impl PartialEq<WeakMap> for WeakMap
[src][+]
impl RefFromWasmAbi for WeakMap
[src][+]
impl StructuralEq for WeakMap
[src]
impl StructuralPartialEq for WeakMap
[src]
impl WasmDescribe for WeakMap
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for WeakMap
impl !Send for WeakMap
impl !Sync for WeakMap
impl Unpin for WeakMap
impl UnwindSafe for WeakMap
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
[src][+]
T: IntoWasmAbi,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,