pub trait ValueExtManual: 'static {
    // Required methods
    fn array_buffer_get_data(&self) -> &[u8] ;
    fn typed_array_get_data(&self) -> TypedArrayData<'_>;
}

Required Methods§

source

fn array_buffer_get_data(&self) -> &[u8]

Available on crate feature v2_38 only.
source

fn typed_array_get_data(&self) -> TypedArrayData<'_>

Available on crate feature v2_38 only.

Implementors§