#[repr(C)]pub struct MfPlusPollerEvent {
pub type_: MfPlusPollerEventType,
pub data: *mut MfPlusPollerEventData,
}Expand description
MIFARE Plus poller event structure.
Upon emission of an event, an instance of this struct will be passed to the callback.
Fields§
§type_: MfPlusPollerEventType< Type of emitted event.
data: *mut MfPlusPollerEventData< Pointer to event specific data.
Trait Implementations§
Source§impl Clone for MfPlusPollerEvent
impl Clone for MfPlusPollerEvent
Source§fn clone(&self) -> MfPlusPollerEvent
fn clone(&self) -> MfPlusPollerEvent
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 moreSource§impl Debug for MfPlusPollerEvent
impl Debug for MfPlusPollerEvent
impl Copy for MfPlusPollerEvent
Auto Trait Implementations§
impl Freeze for MfPlusPollerEvent
impl RefUnwindSafe for MfPlusPollerEvent
impl !Send for MfPlusPollerEvent
impl !Sync for MfPlusPollerEvent
impl Unpin for MfPlusPollerEvent
impl UnwindSafe for MfPlusPollerEvent
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