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