pub trait N5PromiseReader {
// Required methods
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§
Sourcefn get_version(&self) -> Promise
fn get_version(&self) -> Promise
Get the N5 specification version of the container.