[][src]Enum fprint_rs::VerifyResult

#[repr(u32)]
pub enum VerifyResult { NoMatch, Match, Retry, RetryTooShort, RetryCenterFinger, RetryRemoveFinger, }

Variants

NoMatch

The scan completed successfully, but the newly scanned fingerprint does not match the fingerprint being verified against. In the case of identification, this return code indicates that the scanned finger could not be found in the print gallery.

Match

The scan completed successfully and the newly scanned fingerprint does match the fingerprint being verified, or in the case of identification, the scanned fingerprint was found in the print gallery.

Retry

The scan did not succeed due to poor scan quality or other general user scanning problem.

RetryTooShort

The scan did not succeed because the finger swipe was too short.

RetryCenterFinger

The scan did not succeed because the finger was not centered on the scanner.

RetryRemoveFinger

The scan did not succeed due to quality or pressure problems; the user should remove their finger from the scanner before retrying.

Trait Implementations

impl PartialEq<VerifyResult> for VerifyResult[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Eq for VerifyResult[src]

impl Display for VerifyResult[src]

impl Debug for VerifyResult[src]

impl TryFrom<u32> for VerifyResult[src]

type Error = FPrintError

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.