Struct neon::types::BinaryData[][src]

#[repr(C)]pub struct BinaryData<'a> { /* fields omitted */ }

A reference to the internal backing buffer data of a Buffer or ArrayBuffer object, which can be accessed via the Borrow and BorrowMut traits.

Implementations

impl<'a> BinaryData<'a>[src]

pub fn as_slice<T: BinaryViewType>(self) -> &'a [T][src]

Produces an immutable slice as a view into the contents of this buffer.

Example:

let b: Handle<JsArrayBuffer> = cx.argument(0)?;
let (x, y) = cx.borrow(&b, |data| {
    let slice = data.as_slice::<i32>();
    (slice[0], slice[1])
});

pub fn as_mut_slice<T: BinaryViewType>(self) -> &'a mut [T][src]

Produces a mutable slice as a view into the contents of this buffer.

Example:

let mut b: Handle<JsArrayBuffer> = cx.argument(0)?;
cx.borrow_mut(&mut b, |data| {
    let slice = data.as_mut_slice::<f64>();
    slice[0] /= 2.0;
    slice[1] *= 2.0;
});

pub fn len(self) -> usize[src]

Produces the length of the buffer, in bytes.

pub fn is_empty(self) -> bool[src]

Returns true if the buffer is empty

Trait Implementations

impl<'a> Clone for BinaryData<'a>[src]

impl<'a> Copy for BinaryData<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for BinaryData<'a>

impl<'a> !Send for BinaryData<'a>

impl<'a> !Sync for BinaryData<'a>

impl<'a> Unpin for BinaryData<'a>

impl<'a> UnwindSafe for BinaryData<'a>

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> 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.