pub struct Meta {
pub schema: Option<String>,
pub id: String,
pub test: Option<bool>,
pub prepared: String,
pub content_languages: Option<Vec<String>>,
pub name: Option<String>,
pub names: Option<LocalizedText>,
pub sender: Sender,
pub receivers: Option<Vec<Receiver>>,
pub links: Option<Vec<Link>>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
Non-standard information and basic technical information associated with a message.
Fields§
§schema: Option<String>
§id: String
§test: Option<bool>
§prepared: String
§content_languages: Option<Vec<String>>
§name: Option<String>
§names: Option<LocalizedText>
§sender: Sender
§receivers: Option<Vec<Receiver>>
§links: Option<Vec<Link>>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Meta
impl<'de> Deserialize<'de> for Meta
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Meta
impl StructuralPartialEq for Meta
Auto Trait Implementations§
impl Freeze for Meta
impl RefUnwindSafe for Meta
impl Send for Meta
impl Sync for Meta
impl Unpin for Meta
impl UnwindSafe for Meta
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more