pub trait VulkanDisplayExt: IsA<VulkanDisplay> + 'static {
// Provided methods
fn create_window(&self) -> Option<VulkanWindow> { ... }
fn handle_type(&self) -> VulkanDisplayType { ... }
fn remove_window(&self, window: &impl IsA<VulkanWindow>) -> bool { ... }
}Provided Methods§
fn create_window(&self) -> Option<VulkanWindow>
fn handle_type(&self) -> VulkanDisplayType
fn remove_window(&self, window: &impl IsA<VulkanWindow>) -> bool
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".