use super::css::StyleSheet; use serde::{Deserialize, Serialize}; #[derive(Debug, Serialize, Deserialize, Clone)] pub struct Item { contents: Vec<ItemContent>, layout: StyleSheet, } impl std::fmt::Display for Item { fn fmt(&self, _f: &mut std::fmt::Formatter) -> std::fmt::Result { unimplemented!() } } #[derive(Debug, Serialize, Deserialize, Clone)] pub struct ItemContent {}