pub struct Array(/* private fields */);
Expand description
A type representing a JavaScript array.
Implementations§
Trait Implementations§
Source§impl InstanceOf for Array
impl InstanceOf for Array
Source§impl ReferenceType for Array
impl ReferenceType for Array
Source§unsafe fn from_reference_unchecked(reference: Reference) -> Self
unsafe fn from_reference_unchecked(reference: Reference) -> Self
Converts a given reference into a concrete reference-like wrapper.
Doesn’t do any type checking; highly unsafe to use!
Source§impl<'a, E: Into<ConversionError>, V: TryFrom<Value, Error = E>> TryFrom<&'a Array> for Vec<V>
impl<'a, E: Into<ConversionError>, V: TryFrom<Value, Error = E>> TryFrom<&'a Array> for Vec<V>
impl Eq for Array
impl JsSerialize for Array
impl StructuralPartialEq for Array
Auto Trait Implementations§
impl Freeze for Array
impl RefUnwindSafe for Array
impl Send for Array
impl Sync for Array
impl Unpin for Array
impl UnwindSafe for Array
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