pub trait CellAndValue<Value> {
    // Required methods
    fn cell(&self) -> H3Cell;
    fn value(self) -> Value;
}

Required Methods§

source

fn cell(&self) -> H3Cell

source

fn value(self) -> Value

Implementations on Foreign Types§

source§

impl<Value> CellAndValue<Value> for (H3Cell, Value)

source§

fn cell(&self) -> H3Cell

source§

fn value(self) -> Value

Implementors§