pub enum MatchQualityType {
Matched(f32),
NotMatched,
Disabled,
}
Expand description
Represents the quality of a match between an observed fingerprint and a database signature.
Variants§
Trait Implementations§
Source§impl Clone for MatchQualityType
impl Clone for MatchQualityType
Source§fn clone(&self) -> MatchQualityType
fn clone(&self) -> MatchQualityType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for MatchQualityType
impl RefUnwindSafe for MatchQualityType
impl Send for MatchQualityType
impl Sync for MatchQualityType
impl Unpin for MatchQualityType
impl UnwindSafe for MatchQualityType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more