1use tessera_ui::{Color, DrawCommand}; 2 3/// Draw command for the simple rectangle pipeline. 4#[derive(Debug, Clone, Copy, PartialEq)] 5pub struct SimpleRectCommand { 6 pub color: Color, 7} 8 9impl DrawCommand for SimpleRectCommand {}