1 2 3 4 5 6 7 8 9
use crate::expiry::ChDeprecation; #[derive(Debug)] pub struct NegotiatedResponse<T> { pub body: T, pub content_type: Option<String>, /// Populated when `CH-Expiry-Date` is present (deprecated MIME/version). pub deprecation: Option<ChDeprecation>, }