pub struct BioReadR {
pub reader: u8,
pub bio_type: BioType,
pub bio_format: BioFormat,
pub quality: u8,
pub data: Vec<u8>,
}Expand description
osdp_BIOREADR body.
Fields§
§reader: u8Reader number.
bio_type: BioTypeBiometric type captured.
bio_format: BioFormatBiometric format used.
quality: u8Quality score (0..100) of the captured sample.
data: Vec<u8>Captured biometric data (template or raw).
Implementations§
Trait Implementations§
impl Eq for BioReadR
impl StructuralPartialEq for BioReadR
Auto Trait Implementations§
impl Freeze for BioReadR
impl RefUnwindSafe for BioReadR
impl Send for BioReadR
impl Sync for BioReadR
impl Unpin for BioReadR
impl UnsafeUnpin for BioReadR
impl UnwindSafe for BioReadR
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