use serde::Deserialize; #[derive(Deserialize)] pub struct CommentsByTopic { pub mutation_token: Option, pub topic: String, } #[derive(Deserialize)] pub struct NewComment { pub author: String, pub email: String, pub text: String, pub topic: String, }