pub trait PersyInspect {
    // Required methods
    fn inspect_tree<K, V, I>(
        &self,
        index_name: &str,
        inspector: &mut I
    ) -> Result<(), PE<IndexOpsError>>
       where K: IndexType,
             V: IndexType,
             I: TreeInspector<K, V>;
    fn page_state_scan(&self) -> Result<PageStateIter, PE<GenericError>>;
}

Required Methods§

source

fn inspect_tree<K, V, I>( &self, index_name: &str, inspector: &mut I ) -> Result<(), PE<IndexOpsError>>
where K: IndexType, V: IndexType, I: TreeInspector<K, V>,

source

fn page_state_scan(&self) -> Result<PageStateIter, PE<GenericError>>

Object Safety§

This trait is not object safe.

Implementors§