pub trait CompactOp
where Self: Sized,
{ // Required methods fn compact(&self) -> Result<Self, Error>; fn compact_mixed_resolutions(&self) -> Result<Self, Error>; fn uncompact(&self, resolution: Resolution) -> Self; }

Required Methods§

source

fn compact(&self) -> Result<Self, Error>

expects all indexes to be at the same resolution

source

fn compact_mixed_resolutions(&self) -> Result<Self, Error>

source

fn uncompact(&self, resolution: Resolution) -> Self

Object Safety§

This trait is not object safe.

Implementors§