[][src]Struct rusty_v8::ArrayBuffer

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

An instance of the built-in ArrayBuffer constructor (ES6 draft 15.13.5).

Methods

impl ArrayBuffer[src]

pub fn new<'sc>(
    scope: &mut impl ToLocal<'sc>,
    byte_length: usize
) -> Local<'sc, ArrayBuffer>
[src]

Create a new ArrayBuffer. Allocate |byte_length| bytes. Allocated memory will be owned by a created ArrayBuffer and will be deallocated when it is garbage-collected, unless the object is externalized.

pub fn new_with_backing_store<'sc>(
    scope: &mut impl ToLocal<'sc>,
    backing_store: &mut SharedRef<BackingStore>
) -> Local<'sc, ArrayBuffer>
[src]

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

Data length in bytes.

pub fn get_backing_store(&self) -> SharedRef<BackingStore>[src]

pub fn new_backing_store(
    scope: &mut impl InIsolate,
    byte_length: usize
) -> UniqueRef<BackingStore>
[src]

Returns a new standalone BackingStore that is allocated using the array buffer allocator of the isolate. The result can be later passed to ArrayBuffer::New.

If the allocator returns nullptr, then the function may cause GCs in the given isolate and re-try the allocation. If GCs do not help, then the function will crash with an out-of-memory error.

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.