Skip to main content

obsidian_backups/data/
backup_item.rs

1#[derive(Debug, Clone, PartialEq, Eq)]
2#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
3pub struct BackupItem {
4	/// The unique identifier for the backup item.
5	pub id: String,
6	/// The timestamp when the backup was created.
7	pub timestamp: chrono::DateTime<chrono::Utc>,
8	/// A description or notes about the backup item.
9	pub description: String,
10}