1 2 3 4 5 6 7 8
use uuid::Uuid; #[derive(Debug, Clone)] pub struct Category { pub id: Uuid, pub name: String, pub color: String, }