pub trait AsyncInit: Backend {
// Required method
fn init_async(
handle: impl GPUSurfaceHandle,
width: u32,
height: u32,
sender: InitSender<Self>,
);
}Required Methods§
fn init_async( handle: impl GPUSurfaceHandle, width: u32, height: u32, sender: InitSender<Self>, )
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".