1 2 3 4 5 6 7 8 9 10 11 12 13
// https://schema.org/Message #[derive(Debug, Clone, PartialEq, Eq)] pub struct Message { // sender can be persion or recipient pub sender: Person, pub recipient: Person, pub DatePublished: String, } pub struct Person { pub name: String, }