pub trait FormatDetector: Send + Sync {
// Required methods
fn detect(
&self,
body: &[u8],
content_type: Option<&str>,
) -> Option<FormatId>;
fn name(&self) -> &str;
}Expand description
Detects the format of a body payload.