Trait mvc_rs::TView

source ·
pub trait TView<T> {
    // Required methods
    fn wr(&mut self, p: impl TPacket) -> Result<(), Box<dyn Error>>;
    fn reg(&mut self, c: Vec<T>);
    fn col(&self, n: u16) -> T;
}
Expand description

trait TView

Required Methods§

source

fn wr(&mut self, p: impl TPacket) -> Result<(), Box<dyn Error>>

wr

source

fn reg(&mut self, c: Vec<T>)

reg

source

fn col(&self, n: u16) -> T

col

Object Safety§

This trait is not object safe.

Implementors§