pub struct BioMatch {
pub reader: u8,
pub bio_type: BioType,
pub bio_format: BioFormat,
pub quality: u8,
pub template: Vec<u8>,
}Expand description
osdp_BIOMATCH body. Carries a template to match against.
Fields§
§reader: u8Reader number.
bio_type: BioTypeBiometric type to capture.
bio_format: BioFormatFormat of the template.
quality: u8Quality threshold for the match.
template: Vec<u8>Template payload.
Implementations§
Trait Implementations§
impl Eq for BioMatch
impl StructuralPartialEq for BioMatch
Auto Trait Implementations§
impl Freeze for BioMatch
impl RefUnwindSafe for BioMatch
impl Send for BioMatch
impl Sync for BioMatch
impl Unpin for BioMatch
impl UnsafeUnpin for BioMatch
impl UnwindSafe for BioMatch
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