ietf-rfc 0.1.0

A CLI tool to search, retrieve, and display IETF RFCs and drafts
Documentation
1
2
3
4
5
6
7
8
9
10
11
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};

/// Metadata associated with a cached document
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CacheMetadata {
    /// Document title
    pub title: String,
    /// When the document was cached
    pub cached_at: DateTime<Utc>,
}