pub trait ViewProxyInterface: Send + Sync {
    // Required method
    fn open_entry_iterator(
        &self,
        it: ServerEnd<EntryIteratorMarker>,
        options: &EntryIteratorOptions
    ) -> Result<(), Error>;
}

Required Methods§

source

fn open_entry_iterator( &self, it: ServerEnd<EntryIteratorMarker>, options: &EntryIteratorOptions ) -> Result<(), Error>

Implementors§