Trait TableWriter

Source
pub trait TableWriter: TableWriterImpl { }
Expand description

A vtable containing table write access methods

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

Implementors§

Source§

impl<T: TableWriterImpl> TableWriter for T