pub trait View<T> {
// Required methods
fn wr<P>(&mut self, p: P) -> Result<(), Box<dyn Error>>;
fn reg(&mut self, c: Vec<T>);
fn col(&self, n: u16) -> T;
}
Expand description
trait View
Required Methods§
Object Safety§
This trait is not object safe.