[][src]Struct rusty_v8::TypedArray

#[repr(C)]pub struct TypedArray(_);

A base class for an instance of TypedArray series of constructors (ES6 draft 15.13.6).

Methods from Deref<Target = ArrayBufferView>

pub fn buffer<'s>(
    &self,
    scope: &mut HandleScope<'s>
) -> Option<Local<'s, ArrayBuffer>>
[src]

Returns underlying ArrayBuffer.

pub fn byte_length(&self) -> usize[src]

Size of a view in bytes.

pub fn byte_offset(&self) -> usize[src]

Byte offset in |Buffer|.

pub fn copy_contents(&self, dest: &mut [u8]) -> usize[src]

Copy the contents of the ArrayBufferView's buffer to an embedder defined memory without additional overhead that calling ArrayBufferView::Buffer might incur. Returns the number of bytes actually written.

Trait Implementations

impl Deref for TypedArray[src]

type Target = ArrayBufferView

The resulting type after dereferencing.

impl Eq for TypedArray[src]

impl Hash for TypedArray[src]

impl<'s> PartialEq<ArrayBufferView> for TypedArray[src]

impl<'s> PartialEq<BigInt64Array> for TypedArray[src]

impl<'s> PartialEq<BigUint64Array> for TypedArray[src]

impl<'s> PartialEq<Data> for TypedArray[src]

impl<'s> PartialEq<Float32Array> for TypedArray[src]

impl<'s> PartialEq<Float64Array> for TypedArray[src]

impl<'s> PartialEq<Int16Array> for TypedArray[src]

impl<'s> PartialEq<Int32Array> for TypedArray[src]

impl<'s> PartialEq<Int8Array> for TypedArray[src]

impl<'s> PartialEq<Object> for TypedArray[src]

impl<'s> PartialEq<TypedArray> for Data[src]

impl<'s> PartialEq<TypedArray> for Value[src]

impl<'s> PartialEq<TypedArray> for Int32Array[src]

impl<'s> PartialEq<TypedArray> for Int8Array[src]

impl<'s> PartialEq<TypedArray> for Uint16Array[src]

impl<'s> PartialEq<TypedArray> for Uint32Array[src]

impl<'s> PartialEq<TypedArray> for Uint8Array[src]

impl<'s> PartialEq<TypedArray> for Uint8ClampedArray[src]

impl<'s> PartialEq<TypedArray> for Object[src]

impl<'s> PartialEq<TypedArray> for ArrayBufferView[src]

impl<'s> PartialEq<TypedArray> for TypedArray[src]

impl<'s> PartialEq<TypedArray> for BigInt64Array[src]

impl<'s> PartialEq<TypedArray> for BigUint64Array[src]

impl<'s> PartialEq<TypedArray> for Float32Array[src]

impl<'s> PartialEq<TypedArray> for Float64Array[src]

impl<'s> PartialEq<TypedArray> for Int16Array[src]

impl<'s> PartialEq<Uint16Array> for TypedArray[src]

impl<'s> PartialEq<Uint32Array> for TypedArray[src]

impl<'s> PartialEq<Uint8Array> for TypedArray[src]

impl<'s> PartialEq<Uint8ClampedArray> for TypedArray[src]

impl<'s> PartialEq<Value> for TypedArray[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.