pub trait Painter<T = ()> {
    // Required method
    fn paint(&self) -> T;
}

Required Methods§

source

fn paint(&self) -> T

Implementors§