Trait CellAndValue

Source
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§