[−][src]Struct rusty_v8::DataView
An instance of DataView constructor (ES6 draft 15.13.7).
Methods from Deref<Target = ArrayBufferView>
pub fn buffer<'s>(
&self,
scope: &mut HandleScope<'s>
) -> Option<Local<'s, ArrayBuffer>>
[src]
&self,
scope: &mut HandleScope<'s>
) -> Option<Local<'s, ArrayBuffer>>
Returns underlying ArrayBuffer.
pub fn byte_length(&self) -> usize
[src]
Size of a view in bytes.
pub fn byte_offset(&self) -> usize
[src]
Byte offset in |Buffer|.
pub fn copy_contents(&self, dest: &mut [u8]) -> usize
[src]
Copy the contents of the ArrayBufferView's buffer to an embedder defined memory without additional overhead that calling ArrayBufferView::Buffer might incur. Returns the number of bytes actually written.
Trait Implementations
impl Deref for DataView
[src]
type Target = ArrayBufferView
The resulting type after dereferencing.
fn deref(&self) -> &Self::Target
[src]
Auto Trait Implementations
impl RefUnwindSafe for DataView
impl Send for DataView
impl Sync for DataView
impl Unpin for DataView
impl UnwindSafe for DataView
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,