email-lib 0.27.0

Cross-platform, asynchronous Rust library to manage emails
Documentation
1
2
3
4
5
6
7
8
9
//! # Sync hash
//!
//! Module dedicated to synchronization hashing.

use std::hash::DefaultHasher;

pub trait SyncHash {
    fn sync_hash(&self, state: &mut DefaultHasher);
}