#[repr(C)]pub struct MfClassicPollerEvent {
pub type_: MfClassicPollerEventType,
pub data: *mut MfClassicPollerEventData,
}Expand description
MfClassic poller event.
Upon emission of an event, an instance of this struct will be passed to the callback.
Fields§
§type_: MfClassicPollerEventType< Event type.
data: *mut MfClassicPollerEventData< Pointer to event specific data.
Trait Implementations§
Source§impl Clone for MfClassicPollerEvent
impl Clone for MfClassicPollerEvent
Source§fn clone(&self) -> MfClassicPollerEvent
fn clone(&self) -> MfClassicPollerEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MfClassicPollerEvent
Auto Trait Implementations§
impl !Send for MfClassicPollerEvent
impl !Sync for MfClassicPollerEvent
impl Freeze for MfClassicPollerEvent
impl RefUnwindSafe for MfClassicPollerEvent
impl Unpin for MfClassicPollerEvent
impl UnsafeUnpin for MfClassicPollerEvent
impl UnwindSafe for MfClassicPollerEvent
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