Enum libfprint_rs::FpFinger
source · pub enum FpFinger {
Unknown,
LeftThumb,
LeftIndex,
LeftMiddle,
LeftRing,
LeftLittle,
RightThumb,
RightIndex,
RightMiddle,
RightRing,
RightLittle,
}
Expand description
Enum representing a finger. This can be used to specify which finger was used to enroll a new print and can be added as part of the print metadata.
Variants§
Unknown
LeftThumb
LeftIndex
LeftMiddle
LeftRing
LeftLittle
RightThumb
RightIndex
RightMiddle
RightRing
RightLittle
Trait Implementations§
source§impl Ord for FpFinger
impl Ord for FpFinger
source§impl PartialEq<FpFinger> for FpFinger
impl PartialEq<FpFinger> for FpFinger
source§impl PartialOrd<FpFinger> for FpFinger
impl PartialOrd<FpFinger> for FpFinger
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for FpFinger
impl Eq for FpFinger
impl StructuralEq for FpFinger
impl StructuralPartialEq for FpFinger
Auto Trait Implementations§
impl RefUnwindSafe for FpFinger
impl Send for FpFinger
impl Sync for FpFinger
impl Unpin for FpFinger
impl UnwindSafe for FpFinger
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