1 2 3 4 5 6 7 8 9 10 11
use serde::Serialize; #[derive(Debug, Clone, Serialize)] pub struct TextContent { pub text: String, } #[derive(Debug, Clone, Serialize)] pub struct HtmlContent { pub html: String, }