1
2
3
4
5
6
7
8
9
10
11
12
13
/// ### Expires
/// Related: Resource state
///
///  The Expires entity-header field gives the date/time after which the entity
/// should be considered stale.
///
/// Reference: https://www.rfc-editor.org/rfc/rfc1945.html#section-10.7
///
#[derive(Debug, PartialEq, Eq)]
pub struct Expires {
    name: String,
    value: String,
}