#[repr(C)]pub union MfUltralightPollerEventData {
pub auth_context: MfUltralightPollerAuthContext,
pub error: MfUltralightError,
pub write_data: *const MfUltralightData,
pub poller_mode: MfUltralightPollerMode,
pub key_request_data: MfUltralightPollerKeyRequestData,
}Expand description
MfUltralight poller event data.
Fields§
§auth_context: MfUltralightPollerAuthContext< Authentication context.
error: MfUltralightError< Error code indicating reading fail reason.
write_data: *const MfUltralightData< Data to be written to card.
poller_mode: MfUltralightPollerMode< Mode to operate in.
key_request_data: MfUltralightPollerKeyRequestData< Key request data.
Trait Implementations§
Source§impl Clone for MfUltralightPollerEventData
impl Clone for MfUltralightPollerEventData
Source§fn clone(&self) -> MfUltralightPollerEventData
fn clone(&self) -> MfUltralightPollerEventData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MfUltralightPollerEventData
Auto Trait Implementations§
impl Freeze for MfUltralightPollerEventData
impl RefUnwindSafe for MfUltralightPollerEventData
impl !Send for MfUltralightPollerEventData
impl !Sync for MfUltralightPollerEventData
impl Unpin for MfUltralightPollerEventData
impl UnwindSafe for MfUltralightPollerEventData
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