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