use super::hooks::*;
#[derive(Clone)]
pub struct CachingConfiguration {
pub min_body_size: usize,
pub max_body_size: usize,
pub cacheable_by_default: bool,
pub cache_duration: Option<CacheDurationHook>,
}
#[derive(Clone, Debug)]
pub struct EncodingConfiguration {
pub min_body_size: usize,
pub encodable_by_default: bool,
pub keep_identity_encoding: bool,
}