pub trait HasH3Resolution {
    // Required method
    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§

source

fn h3_resolution(&self) -> u8

Gets the index resolution (0-15)

Implementors§

source§

impl<IX> HasH3Resolution for IX
where IX: Index,