pub trait HasH3Resolution {
    fn h3_resolution(&self) -> u8;
}
Expand description

trait to be implemented by all structs being based on H3 data with a given resolution

Required Methods

Gets the index resolution (0-15)

Implementors