pub trait AsTypedArray<'a, T> {
    type Result: JsSerialize;

    unsafe fn as_typed_array(self) -> Self::Result;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors