unobtanium 3.0.0

Opinioated Web search engine library with crawler and viewer companion.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use url::Url;

use crate::types::Blake2b512Digest;

/// Represents groups of exact duplicates indentified by their text_pile digest.
#[derive(Clone, Debug, Hash, PartialEq, Eq)]
pub struct ExactDuplicateGroup {
	/// The shortest or first sorting URL obtained from the database.
	///
	/// Can be used to ontain the origin this group belong to.
	pub first_url: Url,

	/// Shared digest of the text pile
	pub blake2b512_digest: Blake2b512Digest
}