pub trait Fingerprint:
Send
+ Sync
+ 'static {
type Stamp: Eq + Hash + Clone + Send + Sync + Debug + 'static;
// Required method
fn stamp(&self, path: &Path) -> Result<Self::Stamp>;
}Expand description
Cheaply identifies whether a file’s content has changed since the last parse.