[][src]Struct rusty_v8::DataView

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

An instance of DataView constructor (ES6 draft 15.13.7).

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 DataView[src]

type Target = ArrayBufferView

The resulting type after dereferencing.

impl Eq for DataView[src]

impl Hash for DataView[src]

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

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

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

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

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

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

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

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

impl<'s> PartialEq<Value> for DataView[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.