pub struct BSTEventSink<Event> {
pub vtable: Option<NonNull<BSTEventSinkVtbl<Event>>>,
}
Fields§
§vtable: Option<NonNull<BSTEventSinkVtbl<Event>>>
Implementations§
Source§impl<Event> BSTEventSink<Event>
impl<Event> BSTEventSink<Event>
Sourcepub unsafe fn process_event(
&mut self,
event: *const Self,
event_source: *const BSTEventSource<Event>,
) -> BSEventNotifyControl
pub unsafe fn process_event( &mut self, event: *const Self, event_source: *const BSTEventSource<Event>, ) -> BSEventNotifyControl
§Safety
Trait Implementations§
Auto Trait Implementations§
impl<Event> Freeze for BSTEventSink<Event>
impl<Event> RefUnwindSafe for BSTEventSink<Event>
impl<Event> !Send for BSTEventSink<Event>
impl<Event> !Sync for BSTEventSink<Event>
impl<Event> Unpin for BSTEventSink<Event>
impl<Event> UnwindSafe for BSTEventSink<Event>
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