pub trait MessageLoopAbstract:
Default
+ Clone
+ Copy {
// Provided method
fn create_runtime_attributes_builder<W: Default>(
&self,
) -> RuntimeAttributesBuilder<Self, W> { ... }
}Expand description
Message loop abstraction
Message loop abstraction, used to implement different message loop types.
Provided Methods§
Sourcefn create_runtime_attributes_builder<W: Default>(
&self,
) -> RuntimeAttributesBuilder<Self, W>
fn create_runtime_attributes_builder<W: Default>( &self, ) -> RuntimeAttributesBuilder<Self, W>
Create a runtime attributes builder
This function is used to create a runtime attributes builder.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.