// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: net.mmatt.right.now // // This file was automatically generated from Lexicon schemas. // Any manual changes will be overwritten on the next regeneration. ///A personal lexicon for mmatt's statuslog. #[jacquard_derive::lexicon] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic )] #[serde(rename_all = "camelCase")] pub struct Now<'a> { ///The unix timestamp of when the status was recorded pub created_at: jacquard_common::types::string::Datetime, ///The emoji of the status update #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] pub emoji: std::option::Option>, ///The text of the status update #[serde(borrow)] pub text: jacquard_common::CowStr<'a>, } impl jacquard_common::types::collection::Collection for Now<'_> { const NSID: &'static str = "net.mmatt.right.now"; }