1 2 3 4 5 6
use std::vec::Vec; use color::Color; pub trait ColorNames { fn get_colors(&self) -> Vec<Color>; }