Trait Vulkan Video Filter Ext
Source pub trait VulkanVideoFilterExt: IsA<VulkanVideoFilter> + 'static {
// Provided methods
fn device(&self) -> Option<VulkanDevice> { ... }
fn instance(&self) -> Option<VulkanInstance> { ... }
fn queue(&self) -> Option<VulkanQueue> { ... }
}Expand description
Provided Methods§
Sourcefn device(&self) -> Option<VulkanDevice>
fn device(&self) -> Option<VulkanDevice>
§Returns
The currently configured
VulkanDevice
Sourcefn instance(&self) -> Option<VulkanInstance>
fn instance(&self) -> Option<VulkanInstance>
§Returns
The currently configured
VulkanInstance
Sourcefn queue(&self) -> Option<VulkanQueue>
fn queue(&self) -> Option<VulkanQueue>
§Returns
The currently configured
VulkanQueue
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".