momi 0.3.3

A simple CLI tool to create your minutes of meeting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Rich metadata that contains extra metadata which is not part of the standard metadata.
//!

use serde_derive::{Deserialize, Serialize};

/// Rich metadata struct that contains extra metadata which is not part of the standard metadata.
///
/// The `extra_metadata` field is a vector of strings that can hold any additional metadata fields.
#[derive(Debug, Default, PartialEq, PartialOrd, Serialize, Deserialize, Clone)]
pub struct RichMetadata {
    /// Extra metadata fields that are not part of the standard metadata.
    pub extra_metadata: Vec<String>,
}