Skip to main content

tessera_ui_basic_components/pipelines/simple_rect/
command.rs

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 {}