Documentation
1
2
3
4
5
use std::{any::Any, sync::Arc};

pub trait WithHash: Any + Send + Sync + 'static {
    fn hash(&self) -> Arc<str>;
}