Struct js_sys::Int8Array [−][src]
#[repr(transparent)]pub struct Int8Array { /* fields omitted */ }
Implementations
impl Int8Array
[src]
impl Int8Array
[src]impl Int8Array
[src]
impl Int8Array
[src]pub fn new_with_length(length: u32) -> Int8Array
[src]
An
Int8Array()
which creates an array with an internal buffer large
enough for length
elements.
impl Int8Array
[src]
impl Int8Array
[src]pub fn new_with_byte_offset(buffer: &JsValue, byte_offset: u32) -> Int8Array
[src]
An
Int8Array()
which creates an array with the given buffer but is a
view starting at byte_offset
.
impl Int8Array
[src]
impl Int8Array
[src]impl Int8Array
[src]
impl Int8Array
[src]impl Int8Array
[src]
impl Int8Array
[src]pub fn buffer(&self) -> ArrayBuffer
[src]
The buffer accessor property represents the ArrayBuffer
referenced
by a TypedArray
at construction time.
impl Int8Array
[src]
impl Int8Array
[src]impl Int8Array
[src]
impl Int8Array
[src]impl Int8Array
[src]
impl Int8Array
[src]impl Int8Array
[src]
impl Int8Array
[src]impl Int8Array
[src]
impl Int8Array
[src]pub fn byte_length(&self) -> u32
[src]
The byteLength accessor property represents the length (in bytes) of a typed array.
impl Int8Array
[src]
impl Int8Array
[src]pub fn byte_offset(&self) -> u32
[src]
The byteOffset accessor property represents the offset (in bytes) of a
typed array from the start of its ArrayBuffer
.
impl Int8Array
[src]
impl Int8Array
[src]impl Int8Array
[src]
impl Int8Array
[src]impl Int8Array
[src]
impl Int8Array
[src]impl Int8Array
[src]
impl Int8Array
[src]pub unsafe fn view(rust: &[i8]) -> Int8Array
[src]
Creates a JS typed array which is a view into wasm’s linear memory at the slice specified.
This function returns a new typed array which is a view into wasm’s memory. This view does not copy the underlying data.
Unsafety
Views into WebAssembly memory are only valid so long as the
backing buffer isn’t resized in JS. Once this function is called
any future calls to Box::new
(or malloc of any form) may cause
the returned value here to be invalidated. Use with caution!
Additionally the returned object can be safely mutated but the input slice isn’t guaranteed to be mutable.
Finally, the returned object is disconnected from the input slice’s lifetime, so there’s no guarantee that the data is read at the right time.
pub unsafe fn view_mut_raw(ptr: *mut i8, length: usize) -> Int8Array
[src]
Creates a JS typed array which is a view into wasm’s linear memory at the specified pointer with specified length.
This function returns a new typed array which is a view into wasm’s memory. This view does not copy the underlying data.
Unsafety
Views into WebAssembly memory are only valid so long as the
backing buffer isn’t resized in JS. Once this function is called
any future calls to Box::new
(or malloc of any form) may cause
the returned value here to be invalidated. Use with caution!
Additionally the returned object can be safely mutated, the changes are guranteed to be reflected in the input array.
pub fn copy_to(&self, dst: &mut [i8])
[src]
Copy the contents of this JS typed array into the destination Rust slice.
This function will efficiently copy the memory from a typed array into this wasm module’s own linear memory, initializing the memory destination provided.
Panics
This function will panic if this typed array’s length is
different than the length of the provided dst
array.
pub fn copy_from(&self, src: &[i8])
[src]
Copy the contents of the source Rust slice into this JS typed array.
This function will efficiently copy the memory from within the wasm module’s own linear memory to this typed array.
Panics
This function will panic if this typed array’s length is
different than the length of the provided src
array.
pub fn to_vec(&self) -> Vec<i8>
[src]
Efficiently copies the contents of this JS typed array into a new Vec.
Methods from Deref<Target = Object>
pub fn constructor(&self) -> Function
[src]
The constructor property returns a reference to the Object
constructor
function that created the instance object.
pub fn has_own_property(&self, property: &JsValue) -> bool
[src]
The hasOwnProperty()
method returns a boolean indicating whether the
object has the specified property as its own property (as opposed to
inheriting it).
pub fn is_prototype_of(&self, value: &JsValue) -> bool
[src]
The isPrototypeOf()
method checks if an object exists in another
object’s prototype chain.
pub fn property_is_enumerable(&self, property: &JsValue) -> bool
[src]
The propertyIsEnumerable()
method returns a Boolean indicating
whether the specified property is enumerable.
pub fn to_locale_string(&self) -> JsString
[src]
The toLocaleString()
method returns a string representing the object.
This method is meant to be overridden by derived objects for
locale-specific purposes.
pub fn to_string(&self) -> JsString
[src]
The toString()
method returns a string representing the object.
pub fn value_of(&self) -> Object
[src]
The valueOf()
method returns the primitive value of the
specified object.
Trait Implementations
impl FromWasmAbi for Int8Array
[src]
impl FromWasmAbi for Int8Array
[src]impl IntoWasmAbi for Int8Array
[src]
impl IntoWasmAbi for Int8Array
[src]impl<'a> IntoWasmAbi for &'a Int8Array
[src]
impl<'a> IntoWasmAbi for &'a Int8Array
[src]impl JsCast for Int8Array
[src]
impl JsCast for Int8Array
[src]fn instanceof(val: &JsValue) -> bool
[src]
fn unchecked_from_js(val: JsValue) -> Self
[src]
fn unchecked_from_js_ref(val: &JsValue) -> &Self
[src]
pub fn has_type<T>(&self) -> bool where
T: JsCast,
[src]
T: JsCast,
pub fn dyn_into<T>(self) -> Result<T, Self> where
T: JsCast,
[src]
T: JsCast,
pub fn dyn_ref<T>(&self) -> Option<&T> where
T: JsCast,
[src]
T: JsCast,
pub fn unchecked_into<T>(self) -> T where
T: JsCast,
[src]
T: JsCast,
pub fn unchecked_ref<T>(&self) -> &T where
T: JsCast,
[src]
T: JsCast,
pub fn is_instance_of<T>(&self) -> bool where
T: JsCast,
[src]
T: JsCast,
pub fn is_type_of(val: &JsValue) -> bool
[src]
impl RefFromWasmAbi for Int8Array
[src]
impl RefFromWasmAbi for Int8Array
[src]type Abi = <JsValue as RefFromWasmAbi>::Abi
The wasm ABI type references to Self
are recovered from.
type Anchor = ManuallyDrop<Int8Array>
The type that holds the reference to Self
for the duration of the
invocation of the function that has an &Self
parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous. Read more
unsafe fn ref_from_abi(js: Self::Abi) -> Self::Anchor
[src]
Auto Trait Implementations
impl RefUnwindSafe for Int8Array
impl !Send for Int8Array
impl !Sync for Int8Array
impl Unpin for Int8Array
impl UnwindSafe for Int8Array
Blanket Implementations
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
[src]
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
[src]type Abi = <T as IntoWasmAbi>::Abi
Same as IntoWasmAbi::Abi