Type Alias rerun::external::eframe::EventLoopBuilderHook
pub type EventLoopBuilderHook = Box<dyn FnOnce(&mut EventLoopBuilder<UserEvent>)>;
Expand description
Hook into the building of an event loop before it is run
You can configure any platform specific details required on top of the default configuration
done by EFrame
.
Aliased Type§
struct EventLoopBuilderHook(Unique<dyn FnOnce(&mut EventLoopBuilder<UserEvent>)>, Global);
Fields§
§0: Unique<dyn FnOnce(&mut EventLoopBuilder<UserEvent>)>
§1: Global