Skip to main content

Array

Struct Array 

Source
pub struct Array<T = JsValue> { /* private fields */ }

Implementations§

Source§

impl Array

Source

pub fn new() -> Array

Creates a new empty array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn new_typed() -> Array<T>
where Array<T>: ErasableGenericOwn<Array<JsValue>>,

Creates a new empty array.

MDN documentation

Source§

impl Array

Source

pub fn new_with_length(len: u32) -> Array

Creates a new array with the specified length (elements are initialized to undefined).

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn new_with_length_typed(len: u32) -> Array<T>
where Array<T>: ErasableGenericOwn<Array<JsValue>>,

Creates a new array with the specified length (elements are initialized to undefined).

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn at(&self, index: i32) -> T
where T: ErasableGenericOwn<JsValue>,

Retrieves the element at the index, counting from the end if negative (returns undefined if the index is out of range).

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn get(&self, index: u32) -> T
where T: ErasableGenericOwn<JsValue>,

Retrieves the element at the index (returns undefined if the index is out of range).

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn get_unchecked(&self, index: u32) -> T
where T: ErasableGenericOwn<JsValue>,

Retrieves the element at the index (returns undefined if the index is out of range).

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn get_checked(&self, index: u32) -> Option<T>
where Option<T>: ErasableGenericOwn<Option<JsValue>>,

Retrieves the element at the index (returns None if the index is out of range, or if the element is explicitly undefined).

Source§

impl<T> Array<T>

Source

pub fn set(&self, index: u32, value: T)
where T: ErasableGenericOwn<JsValue>,

Sets the element at the index (auto-enlarges the array if the index is out of range).

Source§

impl<T> Array<T>

Source

pub fn set_ref(&self, index: u32, value: &T)
where T: ErasableGenericBorrow<JsValue>,

Sets the element at the index (auto-enlarges the array if the index is out of range).

Source§

impl<T> Array<T>

Source

pub fn delete(&self, index: u32)

Deletes the element at the index (does nothing if the index is out of range).

The element at the index is set to undefined.

This does not resize the array, the array will still be the same length.

Source§

impl Array

Source

pub fn from(val: &JsValue) -> Array

The Array.from() static method creates a new, shallow-copied Array instance from an array-like or iterable object.

MDN documentation

Source§

impl Array

Source

pub fn from_iterable<I>(val: &I) -> Result<Array<I::Item>, JsValue>
where I: Iterable + ErasableGenericBorrow<JsValue>, Array<I::Item>: ErasableGenericOwn<Array<JsValue>>,

The Array.from() static method creates a new, shallow-copied Array instance from an array-like or iterable object.

MDN documentation

Source§

impl Array

Source

pub fn from_iterable_map<'a, I, U>( val: &I, map: &ImmediateClosure<'a, dyn FnMut(I::Item, u32) -> Result<U, JsError> + 'a>, ) -> Result<Array<U>, JsValue>
where I: Iterable + ErasableGenericBorrow<JsValue>, ImmediateClosure<'a, dyn FnMut(I::Item, u32) -> Result<U, JsError> + 'a>: ErasableGenericBorrow<ImmediateClosure<'static, dyn FnMut(JsValue, u32) -> Result<JsValue, JsError> + 'static>>, Array<U>: ErasableGenericOwn<Array<JsValue>>,

The Array.from() static method with a map function creates a new, shallow-copied Array instance from an array-like or iterable object, applying the map function to each value.

MDN documentation

Source§

impl Array

Source

pub fn from_async<I>(val: &I) -> Result<Promise<Array<I::Item>>, JsValue>
where I: AsyncIterable + ErasableGenericBorrow<JsValue>, Promise<Array<I::Item>>: ErasableGenericOwn<Promise<Array<JsValue>>>,

The Array.fromAsync() static method creates a new, shallow-copied Array instance from an async iterable, iterable or array-like object.

MDN documentation

Source§

impl Array

Source

pub fn from_async_map<'a, I, R>( val: &I, map: &ScopedClosure<'a, dyn FnMut(I::Item, u32) -> Result<R, JsError>>, ) -> Result<Promise<Array<R::Resolution>>, JsValue>
where I: AsyncIterable + ErasableGenericBorrow<JsValue>, R: Promising, ScopedClosure<'a, dyn FnMut(I::Item, u32) -> Result<R, JsError>>: ErasableGenericBorrow<ScopedClosure<'static, dyn FnMut(JsValue, u32) -> Result<JsValue, JsError>>>, Promise<Array<R::Resolution>>: ErasableGenericOwn<Promise<Array<JsValue>>>,

The Array.fromAsync() static method with a map function creates a new, shallow-copied Array instance from an async iterable, iterable or array-like object, applying the map function to each value.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn copy_within(&self, target: i32, start: i32, end: i32) -> Array<T>
where Array<T>: ErasableGenericOwn<Array<JsValue>>,

The copyWithin() method shallow copies part of an array to another location in the same array and returns it, without modifying its size.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn concat<U>(&self, array: &Array<U>) -> Array<T>
where U: Upcast<T>, Array<U>: ErasableGenericBorrow<Array<JsValue>>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

The concat() method is used to merge two or more arrays. This method does not change the existing arrays, but instead returns a new array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn concat_many<U>(&self, array: &[Array<U>]) -> Array<T>
where U: Upcast<T>, [Array<U>]: ErasableGenericBorrow<[Array<JsValue>]>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

The concat() method is used to merge two or more arrays. This method does not change the existing arrays, but instead returns a new array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn every(&self, predicate: &mut dyn FnMut(T, u32, Array<T>) -> bool) -> bool
where dyn FnMut(T, u32, Array<T>) -> bool: ErasableGenericBorrowMut<dyn FnMut(JsValue, u32, Array<JsValue>) -> bool>,

The every() method tests whether all elements in the array pass the test implemented by the provided function.

Note: Consider using Array::try_every if the predicate might throw an error.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn try_every<'a>( &self, predicate: &ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<bool, JsError> + 'a>, ) -> Result<bool, JsValue>
where ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<bool, JsError> + 'a>: ErasableGenericBorrow<ImmediateClosure<'static, dyn FnMut(JsValue, u32) -> Result<bool, JsError> + 'static>>,

The every() method tests whether all elements in the array pass the test implemented by the provided function. (Fallible variation)

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn fill(&self, value: &T, start: u32, end: u32) -> Array<T>
where T: ErasableGenericBorrow<JsValue>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

The fill() method fills all the elements of an array from a start index to an end index with a static value. The end index is not included.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn filter( &self, predicate: &mut dyn FnMut(T, u32, Array<T>) -> bool, ) -> Array<T>
where dyn FnMut(T, u32, Array<T>) -> bool: ErasableGenericBorrowMut<dyn FnMut(JsValue, u32, Array<JsValue>) -> bool>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

The filter() method creates a new array with all elements that pass the test implemented by the provided function.

Note: Consider using Array::try_filter if the predicate might throw an error.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn try_filter<'a>( &self, predicate: &ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<bool, JsError> + 'a>, ) -> Result<Array<T>, JsValue>
where ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<bool, JsError> + 'a>: ErasableGenericBorrow<ImmediateClosure<'static, dyn FnMut(JsValue, u32) -> Result<bool, JsError> + 'static>>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

The filter() method creates a new array with all elements that pass the test implemented by the provided function. (Fallible variation)

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn find(&self, predicate: &mut dyn FnMut(T, u32, Array<T>) -> bool) -> T
where dyn FnMut(T, u32, Array<T>) -> bool: ErasableGenericBorrowMut<dyn FnMut(JsValue, u32, Array<JsValue>) -> bool>, T: ErasableGenericOwn<JsValue>,

The find() method returns the value of the first element in the array that satisfies the provided testing function. Otherwise undefined is returned.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn try_find<'a>( &self, predicate: &ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<bool, JsError> + 'a>, ) -> Result<Option<T>, JsValue>
where ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<bool, JsError> + 'a>: ErasableGenericBorrow<ImmediateClosure<'static, dyn FnMut(JsValue, u32) -> Result<bool, JsError> + 'static>>, Option<T>: ErasableGenericOwn<Option<JsValue>>,

The find() method returns the value of the first element in the array that satisfies the provided testing function. Otherwise undefined is returned. (Fallible variation)

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn find_index( &self, predicate: &mut dyn FnMut(T, u32, Array<T>) -> bool, ) -> i32
where dyn FnMut(T, u32, Array<T>) -> bool: ErasableGenericBorrowMut<dyn FnMut(JsValue, u32, Array<JsValue>) -> bool>,

The findIndex() method returns the index of the first element in the array that satisfies the provided testing function. Otherwise -1 is returned.

Note: Consider using Array::try_find_index if the predicate might throw an error.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn try_find_index<'a>( &self, predicate: &ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<bool, JsError> + 'a>, ) -> Result<i32, JsValue>
where ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<bool, JsError> + 'a>: ErasableGenericBorrow<ImmediateClosure<'static, dyn FnMut(JsValue, u32) -> Result<bool, JsError> + 'static>>,

The findIndex() method returns the index of the first element in the array that satisfies the provided testing function. Otherwise -1 is returned. (Fallible variation)

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn find_last( &self, predicate: &mut dyn FnMut(T, u32, Array<T>) -> bool, ) -> T
where dyn FnMut(T, u32, Array<T>) -> bool: ErasableGenericBorrowMut<dyn FnMut(JsValue, u32, Array<JsValue>) -> bool>, T: ErasableGenericOwn<JsValue>,

The findLast() method of Array instances iterates the array in reverse order and returns the value of the first element that satisfies the provided testing function. If no elements satisfy the testing function, undefined is returned.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn try_find_last<'a>( &self, predicate: &ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<bool, JsError> + 'a>, ) -> Result<Option<T>, JsValue>
where ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<bool, JsError> + 'a>: ErasableGenericBorrow<ImmediateClosure<'static, dyn FnMut(JsValue, u32) -> Result<bool, JsError> + 'static>>, Option<T>: ErasableGenericOwn<Option<JsValue>>,

The findLast() method of Array instances iterates the array in reverse order and returns the value of the first element that satisfies the provided testing function. If no elements satisfy the testing function, undefined is returned. (Fallible variation)

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn find_last_index( &self, predicate: &mut dyn FnMut(T, u32, Array<T>) -> bool, ) -> i32
where dyn FnMut(T, u32, Array<T>) -> bool: ErasableGenericBorrowMut<dyn FnMut(JsValue, u32, Array<JsValue>) -> bool>,

The findLastIndex() method of Array instances iterates the array in reverse order and returns the index of the first element that satisfies the provided testing function. If no elements satisfy the testing function, -1 is returned.

Note: Consider using Array::try_find_last_index if the predicate might throw an error.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn try_find_last_index<'a>( &self, predicate: &ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<bool, JsError> + 'a>, ) -> Result<i32, JsValue>
where ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<bool, JsError> + 'a>: ErasableGenericBorrow<ImmediateClosure<'static, dyn FnMut(JsValue, u32) -> Result<bool, JsError> + 'static>>,

The findLastIndex() method of Array instances iterates the array in reverse order and returns the index of the first element that satisfies the provided testing function. If no elements satisfy the testing function, -1 is returned. (Fallible variation)

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn flat(&self, depth: i32) -> Array<JsValue>

The flat() method creates a new array with all sub-array elements concatenated into it recursively up to the specified depth.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn flat_map<U>( &self, callback: &mut dyn FnMut(T, u32, Array<T>) -> Vec<U>, ) -> Array<U>
where dyn FnMut(T, u32, Array<T>) -> Vec<U>: ErasableGenericBorrowMut<dyn FnMut(JsValue, u32, Array<JsValue>) -> Vec<JsValue>>, Array<U>: ErasableGenericOwn<Array<JsValue>>,

The flatMap() method first maps each element using a mapping function, then flattens the result into a new array.

Note: Consider using Array::try_flat_map for safer fallible handling.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn try_flat_map<'a, U>( &self, callback: &ImmediateClosure<'a, dyn FnMut(T, u32) -> Vec<U> + 'a>, ) -> Result<Array<U>, JsValue>
where ImmediateClosure<'a, dyn FnMut(T, u32) -> Vec<U> + 'a>: ErasableGenericBorrow<ImmediateClosure<'static, dyn FnMut(JsValue, u32) -> Vec<JsValue> + 'static>>, Array<U>: ErasableGenericOwn<Array<JsValue>>,

The flatMap() method first maps each element using a mapping function, then flattens the result into a new array.

MDN documentation

Source§

impl<T> Array<T>
where T: JsGeneric,

Source

pub fn for_each(&self, callback: &mut dyn FnMut(T, u32, Array<T>))
where dyn FnMut(T, u32, Array<T>): ErasableGenericBorrowMut<dyn FnMut(JsValue, u32, Array<JsValue>)>,

The forEach() method executes a provided function once for each array element.

Note: Consider using Array::try_for_each if the callback might throw an error.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn try_for_each<'a>( &self, callback: &ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<(), JsError> + 'a>, ) -> Result<(), JsValue>
where ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<(), JsError> + 'a>: ErasableGenericBorrow<ImmediateClosure<'static, dyn FnMut(JsValue, u32) -> Result<(), JsError> + 'static>>,

The forEach() method executes a provided function once for each array element. (Fallible variation)

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn includes(&self, value: &T, from_index: i32) -> bool
where T: ErasableGenericBorrow<JsValue>,

The includes() method determines whether an array includes a certain element, returning true or false as appropriate.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn index_of(&self, value: &T, from_index: i32) -> i32
where T: ErasableGenericBorrow<JsValue>,

The indexOf() method returns the first index at which a given element can be found in the array, or -1 if it is not present.

MDN documentation

Source§

impl Array

Source

pub fn is_array(value: &JsValue) -> bool

The Array.isArray() method determines whether the passed value is an Array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn join(&self, delimiter: &str) -> JsString

The join() method joins all elements of an array (or an array-like object) into a string and returns this string.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn last_index_of(&self, value: &T, from_index: i32) -> i32
where T: ErasableGenericBorrow<JsValue>,

The lastIndexOf() method returns the last index at which a given element can be found in the array, or -1 if it is not present. The array is searched backwards, starting at fromIndex.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn length(&self) -> u32

The length property of an object which is an instance of type Array sets or returns the number of elements in that array. The value is an unsigned, 32-bit integer that is always numerically greater than the highest index in the array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn set_length(&self, value: u32)

Sets the length of the array.

If it is set to less than the current length of the array, it will shrink the array.

If it is set to more than the current length of the array, it will increase the length of the array, filling the new space with empty slots.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn map<U>( &self, predicate: &mut dyn FnMut(T, u32, Array<T>) -> U, ) -> Array<U>
where dyn FnMut(T, u32, Array<T>) -> U: ErasableGenericBorrowMut<dyn FnMut(JsValue, u32, Array<JsValue>) -> JsValue>, Array<U>: ErasableGenericOwn<Array<JsValue>>,

map() calls a provided callback function once for each element in an array, in order, and constructs a new array from the results. callback is invoked only for indexes of the array which have assigned values, including undefined. It is not called for missing elements of the array (that is, indexes that have never been set, which have been deleted or which have never been assigned a value).

Note: Consider using Array::try_map for safer fallible handling.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn try_map<'a, U>( &self, predicate: &ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<U, JsError> + 'a>, ) -> Result<Array<U>, JsValue>
where ImmediateClosure<'a, dyn FnMut(T, u32) -> Result<U, JsError> + 'a>: ErasableGenericBorrow<ImmediateClosure<'static, dyn FnMut(JsValue, u32) -> Result<JsValue, JsError> + 'static>>, Array<U>: ErasableGenericOwn<Array<JsValue>>,

map() calls a provided callback function once for each element in an array, in order, and constructs a new array from the results. callback is invoked only for indexes of the array which have assigned values, including undefined. It is not called for missing elements of the array (that is, indexes that have never been set, which have been deleted or which have never been assigned a value). (Fallible variation)

MDN documentation

Source§

impl Array

Source

pub fn of<T>(values: &[T]) -> Array<T>
where [T]: ErasableGenericBorrow<[JsValue]>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

The Array.of() method creates a new Array instance with a variable number of arguments, regardless of number or type of the arguments.

The difference between Array.of() and the Array constructor is in the handling of integer arguments: Array.of(7) creates an array with a single element, 7, whereas Array(7) creates an empty array with a length property of 7 (Note: this implies an array of 7 empty slots, not slots with actual undefined values).

MDN documentation

Source§

impl Array

Source

pub fn of1<T>(a: &T) -> Array<T>
where T: ErasableGenericBorrow<JsValue>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

Source§

impl Array

Source

pub fn of2<T>(a: &T, b: &T) -> Array<T>
where T: ErasableGenericBorrow<JsValue>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

Source§

impl Array

Source

pub fn of3<T>(a: &T, b: &T, c: &T) -> Array<T>
where T: ErasableGenericBorrow<JsValue>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

Source§

impl Array

Source

pub fn of4<T>(a: &T, b: &T, c: &T, d: &T) -> Array<T>
where T: ErasableGenericBorrow<JsValue>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

Source§

impl Array

Source

pub fn of5<T>(a: &T, b: &T, c: &T, d: &T, e: &T) -> Array<T>
where T: ErasableGenericBorrow<JsValue>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

Source§

impl Array

Source

pub fn of6<T>(a: &T, b: &T, c: &T, d: &T, e: &T, f: &T) -> Array<T>
where T: ErasableGenericBorrow<JsValue>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

Source§

impl Array

Source

pub fn of7<T>(a: &T, b: &T, c: &T, d: &T, e: &T, f: &T, g: &T) -> Array<T>
where T: ErasableGenericBorrow<JsValue>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

Source§

impl Array

Source

pub fn of8<T>( a: &T, b: &T, c: &T, d: &T, e: &T, f: &T, g: &T, h: &T, ) -> Array<T>
where T: ErasableGenericBorrow<JsValue>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

Source§

impl<T> Array<T>

Source

pub fn pop(&self) -> T
where T: ErasableGenericOwn<JsValue>,

The pop() method removes the last element from an array and returns that element. This method changes the length of the array.

Note: Consider using Array::pop_checked for handling empty arrays.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn pop_checked(&self) -> Option<T>
where Option<T>: ErasableGenericOwn<Option<JsValue>>,

The pop() method removes the last element from an array and returns that element. This method changes the length of the array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn push(&self, value: &T) -> u32
where T: ErasableGenericBorrow<JsValue>,

The push() method adds one element to the end of an array and returns the new length of the array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn push_many(&self, values: &[T]) -> u32
where [T]: ErasableGenericBorrow<[JsValue]>,

The push() method adds one or more elements to the end of an array and returns the new length of the array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn reduce( &self, predicate: &mut dyn FnMut(JsValue, T, u32, Array<T>) -> JsValue, initial_value: &JsValue, ) -> JsValue
where dyn FnMut(JsValue, T, u32, Array<T>) -> JsValue: ErasableGenericBorrowMut<dyn FnMut(JsValue, JsValue, u32, Array<JsValue>) -> JsValue>,

The reduce() method applies a function against an accumulator and each element in the array (from left to right) to reduce it to a single value.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn try_reduce<'a, A>( &self, predicate: &ImmediateClosure<'a, dyn FnMut(A, T, u32) -> Result<A, JsError> + 'a>, initial_value: &A, ) -> Result<A, JsValue>
where ImmediateClosure<'a, dyn FnMut(A, T, u32) -> Result<A, JsError> + 'a>: ErasableGenericBorrow<ImmediateClosure<'static, dyn FnMut(JsValue, JsValue, u32) -> Result<JsValue, JsError> + 'static>>, A: ErasableGenericBorrow<JsValue> + ErasableGenericOwn<JsValue>,

The reduce() method applies a function against an accumulator and each element in the array (from left to right) to reduce it to a single value. (Fallible variation)

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn reduce_right( &self, predicate: &mut dyn FnMut(JsValue, T, u32, Array<T>) -> JsValue, initial_value: &JsValue, ) -> JsValue
where dyn FnMut(JsValue, T, u32, Array<T>) -> JsValue: ErasableGenericBorrowMut<dyn FnMut(JsValue, JsValue, u32, Array<JsValue>) -> JsValue>,

The reduceRight() method applies a function against an accumulator and each value of the array (from right-to-left) to reduce it to a single value.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn try_reduce_right<'a, A>( &self, predicate: &ImmediateClosure<'a, dyn FnMut(JsValue, T, u32) -> Result<A, JsError> + 'a>, initial_value: &A, ) -> Result<A, JsValue>
where ImmediateClosure<'a, dyn FnMut(JsValue, T, u32) -> Result<A, JsError> + 'a>: ErasableGenericBorrow<ImmediateClosure<'static, dyn FnMut(JsValue, JsValue, u32) -> Result<JsValue, JsError> + 'static>>, A: ErasableGenericBorrow<JsValue> + ErasableGenericOwn<JsValue>,

The reduceRight() method applies a function against an accumulator and each value of the array (from right-to-left) to reduce it to a single value. (Fallible variation)

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn reverse(&self) -> Array<T>
where Array<T>: ErasableGenericOwn<Array<JsValue>>,

The reverse() method reverses an array in place. The first array element becomes the last, and the last array element becomes the first.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn shift(&self) -> T
where T: ErasableGenericOwn<JsValue>,

The shift() method removes the first element from an array and returns that removed element. This method changes the length of the array.

Note: Consider using Array::shift_checked for handling empty arrays.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn shift_checked(&self) -> Option<T>
where Option<T>: ErasableGenericOwn<Option<JsValue>>,

The shift() method removes the first element from an array and returns that removed element. This method changes the length of the array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn slice(&self, start: u32, end: u32) -> Array<T>
where Array<T>: ErasableGenericOwn<Array<JsValue>>,

The slice() method returns a shallow copy of a portion of an array into a new array object selected from begin to end (end not included). The original array will not be modified.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn slice_from(&self, start: u32) -> Array<T>
where Array<T>: ErasableGenericOwn<Array<JsValue>>,

The slice() method returns a shallow copy of a portion of an array into a new array object selected from the given index to the end. The original array will not be modified.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn some(&self, predicate: &mut dyn FnMut(T) -> bool) -> bool
where dyn FnMut(T) -> bool: ErasableGenericBorrowMut<dyn FnMut(JsValue) -> bool>,

The some() method tests whether at least one element in the array passes the test implemented by the provided function. Note: This method returns false for any condition put on an empty array.

Note: Consider using Array::try_some if the predicate might throw an error.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn try_some<'a>( &self, predicate: &ImmediateClosure<'a, dyn FnMut(T) -> Result<bool, JsError> + 'a>, ) -> Result<bool, JsValue>
where ImmediateClosure<'a, dyn FnMut(T) -> Result<bool, JsError> + 'a>: ErasableGenericBorrow<ImmediateClosure<'static, dyn FnMut(JsValue) -> Result<bool, JsError> + 'static>>,

The some() method tests whether at least one element in the array passes the test implemented by the provided function. (Fallible variation) Note: This method returns false for any condition put on an empty array. MDN documentation

Source§

impl<T> Array<T>

Source

pub fn sort(&self) -> Array<T>
where Array<T>: ErasableGenericOwn<Array<JsValue>>,

The sort() method sorts the elements of an array in place and returns the array. The sort is not necessarily stable. The default sort order is according to string Unicode code points.

The time and space complexity of the sort cannot be guaranteed as it is implementation dependent.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn sort_by(&self, compare_fn: &mut dyn FnMut(T, T) -> i32) -> Array<T>
where dyn FnMut(T, T) -> i32: ErasableGenericBorrowMut<dyn FnMut(JsValue, JsValue) -> i32>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

The sort() method with a custom compare function.

Note: Consider using Array::try_sort_by if the predicate might throw an error.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn try_sort_by<'a>( &self, compare_fn: &ImmediateClosure<'a, dyn FnMut(T, T) -> Result<i32, JsError> + 'a>, ) -> Result<Array<T>, JsValue>
where ImmediateClosure<'a, dyn FnMut(T, T) -> Result<i32, JsError> + 'a>: ErasableGenericBorrow<ImmediateClosure<'static, dyn FnMut(JsValue, JsValue) -> Result<i32, JsError> + 'static>>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

The sort() method with a custom compare function. (Fallible variation)

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn splice(&self, start: u32, delete_count: u32, item: &T) -> Array<T>
where T: ErasableGenericBorrow<JsValue>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

The splice() method changes the contents of an array by removing existing elements and/or adding new elements.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn splice_many( &self, start: u32, delete_count: u32, items: &[T], ) -> Array<T>
where [T]: ErasableGenericBorrow<[JsValue]>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

The splice() method changes the contents of an array by removing existing elements and/or adding new elements.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn to_locale_string(&self, locales: &JsValue, options: &JsValue) -> JsString

The toLocaleString() method returns a string representing the elements of the array. The elements are converted to Strings using their toLocaleString methods and these Strings are separated by a locale-specific String (such as a comma “,”).

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn to_reversed(&self) -> Array<T>
where Array<T>: ErasableGenericOwn<Array<JsValue>>,

The toReversed() method returns a new array with the elements in reversed order, without modifying the original array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn to_sorted(&self) -> Array<T>
where Array<T>: ErasableGenericOwn<Array<JsValue>>,

The toSorted() method returns a new array with the elements sorted in ascending order, without modifying the original array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn to_sorted_by(&self, compare_fn: &mut dyn FnMut(T, T) -> i32) -> Array<T>
where dyn FnMut(T, T) -> i32: ErasableGenericBorrowMut<dyn FnMut(JsValue, JsValue) -> i32>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

The toSorted() method with a custom compare function.

Note: Consider using Array::try_to_sorted_by if the predicate might throw an error.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn try_to_sorted_by<'a>( &self, compare_fn: &ImmediateClosure<'a, dyn FnMut(T, T) -> Result<i32, JsError> + 'a>, ) -> Result<Array<T>, JsValue>
where ImmediateClosure<'a, dyn FnMut(T, T) -> Result<i32, JsError> + 'a>: ErasableGenericBorrow<ImmediateClosure<'static, dyn FnMut(JsValue, JsValue) -> Result<i32, JsError> + 'static>>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

The toSorted() method with a custom compare function. (Fallible variation)

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn to_spliced(&self, start: u32, delete_count: u32, items: &[T]) -> Array<T>
where [T]: ErasableGenericBorrow<[JsValue]>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

The toSpliced() method returns a new array with some elements removed and/or replaced at a given index, without modifying the original array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn to_string(&self) -> JsString

The toString() method returns a string representing the specified array and its elements.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn to_vec(&self) -> Vec<T>
where Vec<T>: ErasableGenericOwn<Vec<JsValue>>,

Converts the Array into a Vector.

Source§

impl<T> Array<T>

Source

pub fn unshift(&self, value: &T) -> u32
where T: ErasableGenericBorrow<JsValue>,

The unshift() method adds one element to the beginning of an array and returns the new length of the array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn unshift_many(&self, values: &[T]) -> u32
where [T]: ErasableGenericBorrow<[JsValue]>,

The unshift() method adds one or more elements to the beginning of an array and returns the new length of the array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn with(&self, index: u32, value: &T) -> Array<T>
where T: ErasableGenericBorrow<JsValue>, Array<T>: ErasableGenericOwn<Array<JsValue>>,

The with() method returns a new array with the element at the given index replaced with the given value, without modifying the original array.

MDN documentation

Source§

impl<T: JsGeneric> Array<T>

Source

pub fn iter(&self) -> ArrayIter<'_, T>

Returns an iterator over the values of the JS array.

Source§

impl<T> Array<T>

Source

pub fn keys(&self) -> Iterator<T>
where Iterator<T>: ErasableGenericOwn<Iterator<JsValue>>,

The keys() method returns a new Array Iterator object that contains the keys for each index in the array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn entries(&self) -> Iterator<T>
where Iterator<T>: ErasableGenericOwn<Iterator<JsValue>>,

👎Deprecated: recommended to use Array::entries_typed instead for typing

The entries() method returns a new Array Iterator object that contains the key/value pairs for each index in the array.

MDN documentation

Source§

impl<T> Array<T>
where T: JsGeneric,

Source

pub fn entries_typed(&self) -> Iterator<ArrayTuple<(Number, T)>>
where Iterator<ArrayTuple<(Number, T)>>: ErasableGenericOwn<Iterator<ArrayTuple<(Number, JsValue)>>>,

The entries() method returns a new Array Iterator object that contains the key/value pairs for each index in the array.

MDN documentation

Source§

impl<T> Array<T>

Source

pub fn values(&self) -> Iterator<T>
where Iterator<T>: ErasableGenericOwn<Iterator<JsValue>>,

The values() method returns a new Array Iterator object that contains the values for each index in the array.

MDN documentation

Methods from Deref<Target = Object>§

Source

pub fn constructor(&self) -> Function

The constructor property returns a reference to the Object constructor function that created the instance object.

MDN documentation

Source

pub fn has_own_property(&self, property: &JsValue) -> bool

👎Deprecated: Use Object::hasOwn instead.

The hasOwnProperty() method returns a boolean indicating whether the object has the specified property as its own property (as opposed to inheriting it).

MDN documentation

Source

pub fn is_prototype_of(&self, value: &JsValue) -> bool

The isPrototypeOf() method checks if an object exists in another object’s prototype chain.

MDN documentation

Source

pub fn property_is_enumerable(&self, property: &JsValue) -> bool

The propertyIsEnumerable() method returns a Boolean indicating whether the specified property is enumerable.

MDN documentation

Source

pub fn to_locale_string(&self) -> JsString

The toLocaleString() method returns a string representing the object. This method is meant to be overridden by derived objects for locale-specific purposes.

MDN documentation

Source

pub fn to_string(&self) -> JsString

The toString() method returns a string representing the object.

MDN documentation

Source

pub fn to_js_string(&self) -> JsString

The toString() method returns a string representing the object.

MDN documentation

Source

pub fn value_of(&self) -> Object

The valueOf() method returns the primitive value of the specified object.

MDN documentation

Methods from Deref<Target = JsValue>§

Source

pub const NULL: JsValue

Source

pub const UNDEFINED: JsValue

Source

pub const TRUE: JsValue

Source

pub const FALSE: JsValue

Source

pub fn as_f64(&self) -> Option<f64>

Returns the f64 value of this JS value if it’s an instance of a number.

If this JS value is not an instance of a number then this returns None.

Source

pub fn is_string(&self) -> bool

Tests whether this JS value is a JS string.

Source

pub fn as_string(&self) -> Option<String>

If this JS value is a string value, this function copies the JS string value into Wasm linear memory, encoded as UTF-8, and returns it as a Rust String.

To avoid the copying and re-encoding, consider the JsString::try_from() function from js-sys instead.

If this JS value is not an instance of a string or if it’s not valid utf-8 then this returns None.

§UTF-16 vs UTF-8

JavaScript strings in general are encoded as UTF-16, but Rust strings are encoded as UTF-8. This can cause the Rust string to look a bit different than the JS string sometimes. For more details see the documentation about the str type which contains a few caveats about the encodings.

Source

pub fn as_bool(&self) -> Option<bool>

Returns the bool value of this JS value if it’s an instance of a boolean.

If this JS value is not an instance of a boolean then this returns None.

Source

pub fn is_null(&self) -> bool

Tests whether this JS value is null

Source

pub fn is_undefined(&self) -> bool

Tests whether this JS value is undefined

Source

pub fn is_null_or_undefined(&self) -> bool

Tests whether this JS value is null or undefined

Source

pub fn is_symbol(&self) -> bool

Tests whether the type of this JS value is symbol

Source

pub fn is_object(&self) -> bool

Tests whether typeof self == "object" && self !== null.

Source

pub fn is_array(&self) -> bool

Tests whether this JS value is an instance of Array.

Source

pub fn is_function(&self) -> bool

Tests whether the type of this JS value is function.

Source

pub fn is_bigint(&self) -> bool

Tests whether the type of this JS value is bigint.

Source

pub fn js_typeof(&self) -> JsValue

Applies the unary typeof JS operator on a JsValue.

MDN documentation

Source

pub fn js_in(&self, obj: &JsValue) -> bool

Applies the binary in JS operator on the two JsValues.

MDN documentation

Source

pub fn is_truthy(&self) -> bool

Tests whether the value is “truthy”.

Source

pub fn is_falsy(&self) -> bool

Tests whether the value is “falsy”.

Source

pub fn loose_eq(&self, other: &JsValue) -> bool

Compare two JsValues for equality, using the == operator in JS.

MDN documentation

Source

pub fn bit_not(&self) -> JsValue

Applies the unary ~ JS operator on a JsValue.

MDN documentation

Source

pub fn unsigned_shr(&self, rhs: &JsValue) -> u32

Applies the binary >>> JS operator on the two JsValues.

MDN documentation

Source

pub fn checked_div(&self, rhs: &JsValue) -> JsValue

Applies the binary / JS operator on two JsValues, catching and returning any RangeError thrown.

MDN documentation

Source

pub fn pow(&self, rhs: &JsValue) -> JsValue

Applies the binary ** JS operator on the two JsValues.

MDN documentation

Source

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

Applies the binary < JS operator on the two JsValues.

MDN documentation

Source

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

Applies the binary <= JS operator on the two JsValues.

MDN documentation

Source

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

Applies the binary >= JS operator on the two JsValues.

MDN documentation

Source

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

Applies the binary > JS operator on the two JsValues.

MDN documentation

Source

pub fn unchecked_into_f64(&self) -> f64

Applies the unary + JS operator on a JsValue. Can throw.

MDN documentation

Trait Implementations§

Source§

impl<T> AsRef<Array<T>> for Array<T>

Source§

fn as_ref(&self) -> &Array<T>

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

impl AsRef<Array> for RegExpMatchArray

Source§

fn as_ref(&self) -> &Array

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

impl<T> AsRef<JsValue> for Array<T>

Source§

fn as_ref(&self) -> &JsValue

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

impl<T> AsRef<Object> for Array<T>

Source§

fn as_ref(&self) -> &Object

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

impl<T: Clone> Clone for Array<T>

Source§

fn clone(&self) -> Array<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 Array<T>

Source§

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

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

impl Default for Array<JsValue>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<T> Deref for Array<T>

Source§

type Target = Object

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Object

Dereferences the value.
Source§

impl<T> ErasableGeneric for Array<T>

Source§

type Repr = JsValue

The singular concrete type that all generic variants can be transmuted on
Source§

impl<A, T: JsGeneric> Extend<A> for Array<T>
where A: AsRef<T>,

Source§

fn extend<I>(&mut self, iter: I)
where I: IntoIterator<Item = A>,

Extends a collection with the contents of an iterator. Read more
Source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
Source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
Source§

impl<T> From<Array<T>> for JsValue

Source§

fn from(obj: Array<T>) -> JsValue

Converts to this type from the input type.
Source§

impl<T> From<Array<T>> for Object

Source§

fn from(obj: Array<T>) -> Object

Converts to this type from the input type.
Source§

impl From<JsValue> for Array

Source§

fn from(obj: JsValue) -> Self

Converts to this type from the input type.
Source§

impl From<RegExpMatchArray> for Array

Source§

fn from(obj: RegExpMatchArray) -> Array

Converts to this type from the input type.
Source§

impl<A, T: JsGeneric> FromIterator<A> for Array<T>
where A: AsRef<T>,

Available on non-js_sys_unstable_apis only.
Source§

fn from_iter<I>(iter: I) -> Array<T>
where I: IntoIterator<Item = A>,

Creates a value from an iterator. Read more
Source§

impl<T> FromWasmAbi for Array<T>

Source§

type Abi = <JsValue as FromWasmAbi>::Abi

The Wasm ABI type that this converts from when coming back out from the ABI boundary.
Source§

unsafe fn from_abi(js: Self::Abi) -> Self

Recover a Self from Self::Abi. Read more
Source§

impl<T: JsGeneric> IntoIterator for Array<T>

Source§

type Item = T

The type of the elements being iterated over.
Source§

type IntoIter = ArrayIntoIter<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<'a, T> IntoWasmAbi for &'a Array<T>

Source§

type Abi = <&'a JsValue as IntoWasmAbi>::Abi

The Wasm ABI type that this converts into when crossing the ABI boundary.
Source§

fn into_abi(self) -> Self::Abi

Convert self into Self::Abi so that it can be sent across the wasm ABI boundary.
Source§

impl<T> IntoWasmAbi for Array<T>

Source§

type Abi = <JsValue as IntoWasmAbi>::Abi

The Wasm ABI type that this converts into when crossing the ABI boundary.
Source§

fn into_abi(self) -> Self::Abi

Convert self into Self::Abi so that it can be sent across the wasm ABI boundary.
Source§

impl<T> Iterable for Array<T>

Source§

type Item = T

The type of values yielded by this iterable.
Source§

impl<T> JsCast for Array<T>

Source§

fn instanceof(val: &JsValue) -> bool

Performs a dynamic instanceof check to see whether the JsValue provided is an instance of this type. Read more
Source§

fn is_type_of(val: &JsValue) -> bool

Performs a dynamic check to see whether the JsValue provided is a value of this type. Read more
Source§

fn unchecked_from_js(val: JsValue) -> Self

Performs a zero-cost unchecked conversion from a JsValue into an instance of Self Read more
Source§

fn unchecked_from_js_ref(val: &JsValue) -> &Self

Performs a zero-cost unchecked conversion from a &JsValue into an instance of &Self. Read more
Source§

fn has_type<T>(&self) -> bool
where T: JsCast,

Test whether this JS value has a type T. Read more
Source§

fn dyn_into<T>(self) -> Result<T, Self>
where T: JsCast,

Performs a dynamic cast (checked at runtime) of this value into the target type T. Read more
Source§

fn dyn_ref<T>(&self) -> Option<&T>
where T: JsCast,

Performs a dynamic cast (checked at runtime) of this value into the target type T. Read more
Source§

fn unchecked_into<T>(self) -> T
where T: JsCast,

Performs a zero-cost unchecked cast into the specified type. Read more
Source§

fn unchecked_ref<T>(&self) -> &T
where T: JsCast,

Performs a zero-cost unchecked cast into a reference to the specified type. Read more
Source§

fn is_instance_of<T>(&self) -> bool
where T: JsCast,

Test whether this JS value is an instance of the type T. Read more
Source§

impl<T> LongRefFromWasmAbi for Array<T>

Source§

type Abi = <JsValue as LongRefFromWasmAbi>::Abi

Same as RefFromWasmAbi::Abi
Source§

type Anchor = Array<T>

Same as RefFromWasmAbi::Anchor
Source§

unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor

Same as RefFromWasmAbi::ref_from_abi
Source§

impl<T> OptionFromWasmAbi for Array<T>

Source§

fn is_none(abi: &Self::Abi) -> bool

Tests whether the argument is a “none” instance. If so it will be deserialized as None, and otherwise it will be passed to FromWasmAbi.
Source§

impl<'a, T> OptionIntoWasmAbi for &'a Array<T>

Source§

fn none() -> Self::Abi

Returns an ABI instance indicating “none”, which JS will interpret as the None branch of this option. Read more
Source§

impl<T> OptionIntoWasmAbi for Array<T>

Source§

fn none() -> Self::Abi

Returns an ABI instance indicating “none”, which JS will interpret as the None branch of this option. Read more
Source§

impl<T: PartialEq> PartialEq for Array<T>

Source§

fn eq(&self, other: &Array<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> Promising for Array<T>

Source§

type Resolution = Array<T>

The type that this value resolves to.
Source§

impl<T> RefFromWasmAbi for Array<T>

Source§

type Abi = <JsValue as RefFromWasmAbi>::Abi

The Wasm ABI type references to Self are recovered from.
Source§

type Anchor = ManuallyDrop<Array<T>>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don’t persist beyond one function call, and so that they remain anonymous.
Source§

unsafe fn ref_from_abi(js: Self::Abi) -> Self::Anchor

Recover a Self::Anchor from Self::Abi. Read more
Source§

impl<T> WasmDescribe for Array<T>

Source§

impl<T: Eq> Eq for Array<T>

Source§

impl<T> StructuralPartialEq for Array<T>

Source§

impl<T, __UpcastTarget0> UpcastFrom<Array<T>> for Array<__UpcastTarget0>
where __UpcastTarget0: UpcastFrom<T>,

Source§

impl<T: JsGeneric> UpcastFrom<Array<T>> for ArrayTuple<(JsOption<T>,)>

Source§

impl<T: JsGeneric> UpcastFrom<Array<T>> for ArrayTuple<(JsOption<T>, JsOption<T>)>

Source§

impl<T: JsGeneric> UpcastFrom<Array<T>> for ArrayTuple<(JsOption<T>, JsOption<T>, JsOption<T>)>

Source§

impl<T: JsGeneric> UpcastFrom<Array<T>> for ArrayTuple<(JsOption<T>, JsOption<T>, JsOption<T>, JsOption<T>)>

Source§

impl<T: JsGeneric> UpcastFrom<Array<T>> for ArrayTuple<(JsOption<T>, JsOption<T>, JsOption<T>, JsOption<T>, JsOption<T>)>

Source§

impl<T: JsGeneric> UpcastFrom<Array<T>> for ArrayTuple<(JsOption<T>, JsOption<T>, JsOption<T>, JsOption<T>, JsOption<T>, JsOption<T>)>

Source§

impl<T: JsGeneric> UpcastFrom<Array<T>> for ArrayTuple<(JsOption<T>, JsOption<T>, JsOption<T>, JsOption<T>, JsOption<T>, JsOption<T>, JsOption<T>)>

Source§

impl<T: JsGeneric> UpcastFrom<Array<T>> for ArrayTuple<(JsOption<T>, JsOption<T>, JsOption<T>, JsOption<T>, JsOption<T>, JsOption<T>, JsOption<T>, JsOption<T>)>

Source§

impl<T> UpcastFrom<Array<T>> for ArrayTuple<(T,)>

Source§

impl<T> UpcastFrom<Array<T>> for ArrayTuple<(T, T)>

Source§

impl<T> UpcastFrom<Array<T>> for ArrayTuple<(T, T, T)>

Source§

impl<T> UpcastFrom<Array<T>> for ArrayTuple<(T, T, T, T)>

Source§

impl<T> UpcastFrom<Array<T>> for ArrayTuple<(T, T, T, T, T)>

Source§

impl<T> UpcastFrom<Array<T>> for ArrayTuple<(T, T, T, T, T, T)>

Source§

impl<T> UpcastFrom<Array<T>> for ArrayTuple<(T, T, T, T, T, T, T)>

Source§

impl<T> UpcastFrom<Array<T>> for ArrayTuple<(T, T, T, T, T, T, T, T)>

Source§

impl<T, __UpcastTarget0> UpcastFrom<Array<T>> for JsOption<Array<__UpcastTarget0>>
where __UpcastTarget0: UpcastFrom<T>,

Source§

impl<T> UpcastFrom<Array<T>> for JsOption<Object>

Source§

impl<T> UpcastFrom<Array<T>> for JsValue

Source§

impl<T> UpcastFrom<Array<T>> for Object

Source§

impl<T1, Target> UpcastFrom<ArrayTuple<(T1,)>> for Array<Target>
where Target: UpcastFrom<T1>,

Source§

impl<T1, T2, Target> UpcastFrom<ArrayTuple<(T1, T2)>> for Array<Target>
where Target: UpcastFrom<T1> + UpcastFrom<T2>,

Source§

impl<T1, T2, T3, Target> UpcastFrom<ArrayTuple<(T1, T2, T3)>> for Array<Target>
where Target: UpcastFrom<T1> + UpcastFrom<T2> + UpcastFrom<T3>,

Source§

impl<T1, T2, T3, T4, Target> UpcastFrom<ArrayTuple<(T1, T2, T3, T4)>> for Array<Target>
where Target: UpcastFrom<T1> + UpcastFrom<T2> + UpcastFrom<T3> + UpcastFrom<T4>,

Source§

impl<T1, T2, T3, T4, T5, Target> UpcastFrom<ArrayTuple<(T1, T2, T3, T4, T5)>> for Array<Target>
where Target: UpcastFrom<T1> + UpcastFrom<T2> + UpcastFrom<T3> + UpcastFrom<T4> + UpcastFrom<T5>,

Source§

impl<T1, T2, T3, T4, T5, T6, Target> UpcastFrom<ArrayTuple<(T1, T2, T3, T4, T5, T6)>> for Array<Target>
where Target: UpcastFrom<T1> + UpcastFrom<T2> + UpcastFrom<T3> + UpcastFrom<T4> + UpcastFrom<T5> + UpcastFrom<T6>,

Source§

impl<T1, T2, T3, T4, T5, T6, T7, Target> UpcastFrom<ArrayTuple<(T1, T2, T3, T4, T5, T6, T7)>> for Array<Target>
where Target: UpcastFrom<T1> + UpcastFrom<T2> + UpcastFrom<T3> + UpcastFrom<T4> + UpcastFrom<T5> + UpcastFrom<T6> + UpcastFrom<T7>,

Source§

impl<T1, T2, T3, T4, T5, T6, T7, T8, Target> UpcastFrom<ArrayTuple<(T1, T2, T3, T4, T5, T6, T7, T8)>> for Array<Target>
where Target: UpcastFrom<T1> + UpcastFrom<T2> + UpcastFrom<T3> + UpcastFrom<T4> + UpcastFrom<T5> + UpcastFrom<T6> + UpcastFrom<T7> + UpcastFrom<T8>,

Source§

impl UpcastFrom<RegExpMatchArray> for Array

Auto Trait Implementations§

§

impl<T> Freeze for Array<T>

§

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

§

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

§

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

§

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

§

impl<T> UnsafeUnpin for Array<T>

§

impl<T> UnwindSafe for Array<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> ReturnWasmAbi for T
where T: IntoWasmAbi,

Source§

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi
Source§

fn return_abi(self) -> <T as ReturnWasmAbi>::Abi

Same as IntoWasmAbi::into_abi, except that it may throw and never return in the case of Err.
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, 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> TryFromJsValue for T
where T: JsCast,

Source§

fn try_from_js_value(val: JsValue) -> Result<T, JsValue>

Performs the conversion.
Source§

fn try_from_js_value_ref(val: &JsValue) -> Option<T>

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.
Source§

impl<S, T> Upcast<T> for S
where T: UpcastFrom<S> + ?Sized, S: ?Sized,

Source§

fn upcast(&self) -> &T
where Self: ErasableGeneric, T: ErasableGeneric<Repr = Self::Repr>,

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) -> T
where Self: Sized + ErasableGeneric, T: ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider type within the Wasm bindgen generics type system. Read more
Source§

impl<T> VectorFromWasmAbi for T
where T: ErasableGeneric<Repr = JsValue> + WasmDescribe,

Source§

impl<T> VectorIntoWasmAbi for T
where T: ErasableGeneric<Repr = JsValue> + WasmDescribe,

Source§

impl<T> JsGeneric for T
where T: ErasableGeneric<Repr = JsValue> + UpcastFrom<T> + Upcast<JsValue> + 'static,