VulkanVideoFilterExt

Trait VulkanVideoFilterExt 

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

Trait containing all VulkanVideoFilter methods.

§Implementors

VulkanVideoFilter

Provided Methods§

Source

fn device(&self) -> Option<VulkanDevice>

§Returns

The currently configured VulkanDevice

Source

fn instance(&self) -> Option<VulkanInstance>

§Returns

The currently configured VulkanInstance

Source

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", so this trait is not object safe.

Implementors§