1use derive_new::new; 2 3#[derive(new, Debug)] 4pub struct Message { 5 pub client_name: String, 6 pub chat_id: String, 7 pub data: String 8}