pub trait FormatProbe: Send + Sync {
// Required method
fn probe(&self, path: &Path) -> Result<ProbeResult, WsiError>;
}Expand description
Detects whether a file is a given format. Fast, no full parse.
pub trait FormatProbe: Send + Sync {
// Required method
fn probe(&self, path: &Path) -> Result<ProbeResult, WsiError>;
}Detects whether a file is a given format. Fast, no full parse.