Trait TableReader

Source
pub trait TableReader: TableReaderImpl { }
Expand description

A vtable containing table read access methods

It’s used as a token to prove you’re allowed to read tables in a particular context. The default implementation is crate::tables::LazyTableReader.

Implementors§

Source§

impl<T: TableReaderImpl> TableReader for T