Struct VerifyPinInfo
#[repr(C)]pub struct VerifyPinInfo {
pub app_info: AppIdInfo,
pub pin_id: PinId,
pub pin_value_len: u32,
pub pin_value: [c_char; 8],
}Fields§
§app_info: AppIdInfoApplication identification information.
pin_id: PinIdPIN ID.
pin_value_len: u32Must be set to the number of elements in pin_value.
pin_value: [c_char; 8]Value of the PIN.
Auto Trait Implementations§
impl Freeze for VerifyPinInfo
impl RefUnwindSafe for VerifyPinInfo
impl Send for VerifyPinInfo
impl Sync for VerifyPinInfo
impl Unpin for VerifyPinInfo
impl UnwindSafe for VerifyPinInfo
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