pub enum FpFinger {
Unknown = 0,
LeftThumb = 1,
LeftIndex = 2,
LeftMiddle = 3,
LeftRing = 4,
LeftLittle = 5,
RightThumb = 6,
RightIndex = 7,
RightMiddle = 8,
RightRing = 9,
RightLittle = 10,
}
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 = 0
LeftThumb = 1
LeftIndex = 2
LeftMiddle = 3
LeftRing = 4
LeftLittle = 5
RightThumb = 6
RightIndex = 7
RightMiddle = 8
RightRing = 9
RightLittle = 10
Trait Implementations§
Source§impl Ord for FpFinger
impl Ord for FpFinger
Source§impl PartialOrd for FpFinger
impl PartialOrd for FpFinger
impl Copy for FpFinger
impl Eq for FpFinger
impl StructuralPartialEq for FpFinger
Auto Trait Implementations§
impl Freeze for FpFinger
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