[][src]Trait n5_wasm::N5PromiseReader

pub trait N5PromiseReader {
    fn get_version(&self) -> Promise;
fn get_dataset_attributes(&self, path_name: &str) -> Promise;
fn exists(&self, path_name: &str) -> Promise;
fn dataset_exists(&self, path_name: &str) -> Promise;
fn read_block(
        &self,
        path_name: &str,
        data_attrs: &DatasetAttributes,
        grid_position: Vec<i64>
    ) -> Promise;
fn list_attributes(&self, path_name: &str) -> Promise; }

Required methods

fn get_version(&self) -> Promise

Get the N5 specification version of the container.

fn get_dataset_attributes(&self, path_name: &str) -> Promise

fn exists(&self, path_name: &str) -> Promise

fn dataset_exists(&self, path_name: &str) -> Promise

fn read_block(
    &self,
    path_name: &str,
    data_attrs: &DatasetAttributes,
    grid_position: Vec<i64>
) -> Promise

fn list_attributes(&self, path_name: &str) -> Promise

Loading content...

Implementors

impl<T> N5PromiseReader for T where
    T: N5AsyncReader
[src]

Loading content...