libmhash 0.2.1

A file hashing library that can do multiple hashes for multile files at the same time.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::hash::Hash;

use crate::{hasher_server::Identifier, Error};

#[derive(Debug)]
pub struct HasherError<Tag>
where
    Tag: Clone + Eq + Hash + Send,
{
    pub identifier: Identifier,
    pub tag: Option<Tag>,
    pub error: Error,
}