pub trait TypedArrayPointer {
    // Required method
    fn as_typed_array<'v, F, T>(&'v self, f: F) -> Result<Vec<T>, Error>
       where F: Fn(&'v Value) -> Option<T>;
}

Required Methods§

source

fn as_typed_array<'v, F, T>(&'v self, f: F) -> Result<Vec<T>, Error>where F: Fn(&'v Value) -> Option<T>,

Implementations on Foreign Types§

source§

impl TypedArrayPointer for Option<&Value>

source§

fn as_typed_array<'v, F, T>(&'v self, f: F) -> Result<Vec<T>, Error>where F: Fn(&'v Value) -> Option<T>,

Implementors§