Type Alias mozjs::typedarray::HeapArrayBuffer

source ·
pub type HeapArrayBuffer = TypedArray<ArrayBufferU8, Box<Heap<*mut JSObject>>>;

Aliased Type§

struct HeapArrayBuffer {
    object: Box<Heap<*mut JSObject>, Global>,
    computed: Cell<Option<(*mut u8, usize)>>,
}

Fields§

§object: Box<Heap<*mut JSObject>, Global>§computed: Cell<Option<(*mut u8, usize)>>

Implementations§

source§

impl<T: TypedArrayElement, S: JSObjectStorage> TypedArray<T, S>

source

pub fn from(object: *mut JSObject) -> Result<Self, ()>

Create a typed array representation that wraps an existing JS reflector. This operation will fail if attempted on a JS object that does not match the expected typed array details.

source

fn data(&self) -> (*mut T::Element, usize)

source

pub fn len(&self) -> usize

Returns the number of elements in the underlying typed array.

source

pub unsafe fn underlying_object(&self) -> &S

Unsafety

Returned wrapped pointer to the underlying JSObject is meant to be read-only, modifying it can lead to Undefined Behaviour and violation of TypedArray API guarantees.

Practically, this exists only to implement JSTraceable trait in Servo for Box<Heap<*mut JSObject>> variant.

source

pub fn to_vec(&self) -> Vec<T::Element>where T::Element: Clone,

Retrieves an owned data that’s represented by the typed array.

source

pub unsafe fn as_slice(&self) -> &[T::Element]

Unsafety

The returned slice can be invalidated if the underlying typed array is neutered.

source

pub unsafe fn as_mut_slice(&mut self) -> &mut [T::Element]

Unsafety

The returned slice can be invalidated if the underlying typed array is neutered.

The underlying JSObject can be aliased, which can lead to Undefined Behavior due to mutable aliasing.

source

pub fn is_shared(&self) -> bool

Return a boolean flag which denotes whether the underlying buffer is a SharedArrayBuffer.

source§

impl<T: TypedArrayElementCreator + TypedArrayElement, S: JSObjectStorage> TypedArray<T, S>

source

pub unsafe fn create( cx: *mut JSContext, with: CreateWith<'_, T::Element>, result: MutableHandleObject<'_> ) -> Result<(), ()>

Create a new JS typed array, optionally providing initial data that will be copied into the newly-allocated buffer. Returns the new JS reflector.

source

pub unsafe fn update(&mut self, data: &[T::Element])

Update an existed JS typed array

source

unsafe fn update_raw(data: &[T::Element], result: *mut JSObject)

Trait Implementations§

source§

impl<T: TypedArrayElement, S: JSObjectStorage> FromJSValConvertible for TypedArray<T, S>

§

type Config = ()

Optional configurable behaviour switch; use () for no configuration.
source§

unsafe fn from_jsval( _cx: *mut JSContext, value: HandleValue<'_>, _option: () ) -> Result<ConversionResult<Self>, ()>

Convert val to type Self. Optional configuration of type T can be passed as the option argument. If it returns Err(()), a JSAPI exception is pending. If it returns Ok(Failure(reason)), there is no pending JSAPI exception.
source§

impl<T: TypedArrayElement, S: JSObjectStorage> ToJSValConvertible for TypedArray<T, S>

source§

unsafe fn to_jsval(&self, cx: *mut JSContext, rval: MutableHandleValue<'_>)

Convert self to a JSVal. JSAPI failure causes a panic.
source§

impl<T: TypedArrayElement> Traceable for TypedArray<T, Box<Heap<*mut JSObject>>>

source§

unsafe fn trace(&self, trc: *mut JSTracer)

Trace self.