[][src]Struct web_sys::GpuBuffer

#[repr(transparent)]pub struct GpuBuffer { /* fields omitted */ }

The GpuBuffer class.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

Implementations

impl GpuBuffer[src]

pub fn label(&self) -> Option<String>[src]

Getter for the label field of this object.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn set_label(&self, value: Option<&str>)[src]

Setter for the label field of this object.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn destroy(&self)[src]

The destroy() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn get_mapped_range(&self) -> ArrayBuffer[src]

The getMappedRange() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn get_mapped_range_with_u32(&self, offset: u32) -> ArrayBuffer[src]

The getMappedRange() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn get_mapped_range_with_f64(&self, offset: f64) -> ArrayBuffer[src]

The getMappedRange() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn get_mapped_range_with_u32_and_u32(
    &self,
    offset: u32,
    size: u32
) -> ArrayBuffer
[src]

The getMappedRange() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn get_mapped_range_with_f64_and_u32(
    &self,
    offset: f64,
    size: u32
) -> ArrayBuffer
[src]

The getMappedRange() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn get_mapped_range_with_u32_and_f64(
    &self,
    offset: u32,
    size: f64
) -> ArrayBuffer
[src]

The getMappedRange() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn get_mapped_range_with_f64_and_f64(
    &self,
    offset: f64,
    size: f64
) -> ArrayBuffer
[src]

The getMappedRange() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn map_async(&self, mode: u32) -> Promise[src]

The mapAsync() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn map_async_with_u32(&self, mode: u32, offset: u32) -> Promise[src]

The mapAsync() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn map_async_with_f64(&self, mode: u32, offset: f64) -> Promise[src]

The mapAsync() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn map_async_with_u32_and_u32(
    &self,
    mode: u32,
    offset: u32,
    size: u32
) -> Promise
[src]

The mapAsync() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn map_async_with_f64_and_u32(
    &self,
    mode: u32,
    offset: f64,
    size: u32
) -> Promise
[src]

The mapAsync() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn map_async_with_u32_and_f64(
    &self,
    mode: u32,
    offset: u32,
    size: f64
) -> Promise
[src]

The mapAsync() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn map_async_with_f64_and_f64(
    &self,
    mode: u32,
    offset: f64,
    size: f64
) -> Promise
[src]

The mapAsync() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

impl GpuBuffer[src]

pub fn unmap(&self)[src]

The unmap() method.

MDN Documentation

This API requires the following crate features to be activated: GpuBuffer

This API is unstable and requires --cfg=web_sys_unstable_apis to be activated, as described in the wasm-bindgen guide

Trait Implementations

impl AsRef<GpuBuffer> for GpuBuffer[src]

impl AsRef<JsValue> for GpuBuffer[src]

impl AsRef<Object> for GpuBuffer[src]

impl Clone for GpuBuffer[src]

impl Debug for GpuBuffer[src]

impl Deref for GpuBuffer[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for GpuBuffer[src]

impl From<GpuBuffer> for JsValue[src]

impl From<GpuBuffer> for Object[src]

impl From<JsValue> for GpuBuffer[src]

impl FromWasmAbi for GpuBuffer[src]

type Abi = <JsValue as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for GpuBuffer[src]

type Abi = <JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl<'a> IntoWasmAbi for &'a GpuBuffer[src]

type Abi = <&'a JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl JsCast for GpuBuffer[src]

impl OptionFromWasmAbi for GpuBuffer[src]

impl OptionIntoWasmAbi for GpuBuffer[src]

impl<'a> OptionIntoWasmAbi for &'a GpuBuffer[src]

impl PartialEq<GpuBuffer> for GpuBuffer[src]

impl RefFromWasmAbi for GpuBuffer[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<GpuBuffer>

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

impl StructuralEq for GpuBuffer[src]

impl StructuralPartialEq for GpuBuffer[src]

impl WasmDescribe for GpuBuffer[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> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.