Struct TypedWeakSet

Source
pub struct TypedWeakSet<T> { /* private fields */ }
Expand description

TypedWeakSet<T> – Typed wrapper around ECMAScript “WeakSet” (new WeakSet()).

Implementations§

Source§

impl<T> TypedWeakSet<T>

Source

pub fn new() -> Self

new WeakSet() — empty set.

Source

pub fn size(&self) -> usize

set.size

Source

pub fn add(&mut self, value: T)
where Val: From<T>,

set.add(value) — returns &mut Self for chaining (matches JS).

Source

pub fn delete(&mut self, value: T) -> bool
where Val: From<T>,

set.delete(value)bool

Source

pub fn clear(&mut self)

set.clear()

Source

pub fn get(&self, idx: usize) -> Option<T>
where T: FromVal,

Return a copy of the element at idx converted to T.

Source

pub fn has(&self, val: T) -> bool
where Val: From<T>,

Returns whether a value exists in the sequence.

Source

pub fn set(&self, idx: usize, val: T)
where T: FromVal, Val: From<T>,

Source

pub fn len(&self) -> usize

Methods from Deref<Target = Val>§

Source

pub fn get<T>(&self, prop: T) -> Val
where T: Into<Val>,

Gets the property prop

Source

pub fn set<K, V>(&self, prop: K, val: V)
where K: Into<Val>, V: Into<Val>,

Set the underlying js object property prop to val

Source

pub fn has<T>(&self, prop: T) -> bool
where T: Into<Val>,

Checks whether a property prop exists

Source

pub fn has_own_property(&self, prop: &str) -> bool

Checks whether a non-inherited property prop exists

Source

pub fn type_of(&self) -> String

Gets the typeof the underlying js object

Source

pub fn at<T>(&self, idx: T) -> Val
where T: Into<Val>,

Gets the element at index idx. Assumes the underlying js type is indexable

Source

pub fn to_vec<V>(&self) -> Vec<V>
where V: FromVal,

Converts the underlying js array to a Vec of V

Source

pub fn call(&self, f: &str, args: &[Val]) -> Val

Calls the method f with args, can return an undefined js value

Source

pub fn new(&self, args: &[Val]) -> Val

Calls the object’s constructor with args constructing a new object

Source

pub fn invoke(&self, args: &[Val]) -> Val

Invokes the function object with args, can return an undefined js value

Source

pub fn await_(&self) -> Val

Awaits the invoked function object

Source

pub fn instanceof(&self, v: Val) -> bool

Checks whether this Val is an instanceof v

Source

pub fn is_number(&self) -> bool

Source

pub fn is_string(&self) -> bool

Source

pub fn is_null(&self) -> bool

Source

pub fn is_undefined(&self) -> bool

Source

pub fn is_error(&self) -> bool

Source

pub fn is_function(&self) -> bool

Source

pub fn as_<T>(&self) -> T
where T: FromVal,

Trait Implementations§

Source§

impl<T> AsMut<Val> for TypedWeakSet<T>

Source§

fn as_mut(&mut self) -> &mut Val

Converts this type into a mutable reference of the (usually inferred) input type.
Source§

impl<T> AsRef<Val> for TypedWeakSet<T>

Source§

fn as_ref(&self) -> &Val

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<T: Clone> Clone for TypedWeakSet<T>

Source§

fn clone(&self) -> TypedWeakSet<T>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug> Debug for TypedWeakSet<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> Deref for TypedWeakSet<T>

Source§

type Target = Val

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<T> DerefMut for TypedWeakSet<T>

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
Source§

impl<T> Display for TypedWeakSet<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> From<&TypedWeakSet<T>> for Val

Source§

fn from(x: &TypedWeakSet<T>) -> Val

Converts to this type from the input type.
Source§

impl<T> From<TypedWeakSet<T>> for Val

Source§

fn from(x: TypedWeakSet<T>) -> Val

Converts to this type from the input type.
Source§

impl<T> FromIterator<T> for TypedWeakSet<T>
where Val: From<T>,

Source§

fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self

Creates a value from an iterator. Read more
Source§

impl<T> FromVal for TypedWeakSet<T>

Source§

fn from_val(v: &Val) -> Self

Creates a Val object from another
Source§

fn take_ownership(v: Handle) -> Self

Takes the ownership of a handle
Source§

fn as_handle(&self) -> Handle

Returns the raw js handle
Source§

impl<'a, T> IntoIterator for &'a TypedWeakSet<T>
where T: FromVal,

Source§

type Item = T

The type of the elements being iterated over.
Source§

type IntoIter = TypedWeakSetIter<'a, T>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<T: PartialEq> PartialEq for TypedWeakSet<T>

Source§

fn eq(&self, other: &TypedWeakSet<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: PartialOrd> PartialOrd for TypedWeakSet<T>

Source§

fn partial_cmp(&self, other: &TypedWeakSet<T>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<T> StructuralPartialEq for TypedWeakSet<T>

Auto Trait Implementations§

§

impl<T> Freeze for TypedWeakSet<T>

§

impl<T> RefUnwindSafe for TypedWeakSet<T>
where T: RefUnwindSafe,

§

impl<T> Send for TypedWeakSet<T>
where T: Send,

§

impl<T> Sync for TypedWeakSet<T>
where T: Sync,

§

impl<T> Unpin for TypedWeakSet<T>
where T: Unpin,

§

impl<T> UnwindSafe for TypedWeakSet<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.