huginn_net_db/
utils.rs

1/// Represents the quality of a match between an observed fingerprint and a database signature.
2#[derive(Clone, Debug)]
3pub enum MatchQualityType {
4    Matched(f32), // 0.05 to 1.0 (quality score: 1.0 = perfect match, 0.05 = worst match)
5    NotMatched,
6    Disabled,
7}