pub trait VulkanVideoFilterExt: IsA<VulkanVideoFilter> + 'static {
// Provided methods
fn device(&self) -> Option<VulkanDevice> { ... }
fn instance(&self) -> Option<VulkanInstance> { ... }
fn queue(&self) -> Option<VulkanQueue> { ... }
}Provided Methods§
fn device(&self) -> Option<VulkanDevice>
Available on crate feature
v1_26 only.fn instance(&self) -> Option<VulkanInstance>
Available on crate feature
v1_26 only.fn queue(&self) -> Option<VulkanQueue>
Available on crate feature
v1_26 only.Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".