Expand description
Types and traits for working with binary buffers.
Structs§
- Borrow
Error - An error returned by
TypedArray::try_borrow
orTypedArray::try_borrow_mut
indicating that a mutable borrow would overlap with another borrow. - Ref
- Wraps binary data immutably borrowed from a JavaScript value.
- RefMut
- Wraps binary data mutably borrowed from a JavaScript value.
- Region
- Represents a typed region of an
ArrayBuffer
.
Traits§
- Binary
- A marker trait for all possible element types of binary buffers.
- Typed
Array - A trait allowing Rust to borrow binary data from the memory buffer of JavaScript typed arrays.