2 个不稳定版本
0.2.0 | 2021 年 10 月 18 日 |
---|---|
0.1.0 | 2018 年 6 月 15 日 |
排名:71 / 缓存
每月下载量:51,367
被 39 个 包使用(14 个直接使用)
大小:10KB
代码行数:155 行
rust-cache-control
Rust 包用于解析 HTTP Cache-Control 头部。
use cache_control::{Cachability, CacheControl};
use std::time::Duration;
let cache_control = CacheControl::from_header("Cache-Control: public, max-age=60").unwrap();
assert_eq!(cache_control.cachability, Some(Cachability::Public));
assert_eq!(cache_control.max_age, Some(Duration::from_secs(60)));
lib.rs
:
Rust 包用于解析 HTTP Cache-Control 头部。
示例
use cache_control::{Cachability, CacheControl};
use std::time::Duration;
let cache_control = CacheControl::from_header("Cache-Control: public, max-age=60").unwrap();
assert_eq!(cache_control.cachability, Some(Cachability::Public));
assert_eq!(cache_control.max_age, Some(Duration::from_secs(60)));