[][src]Struct openvr::compositor::texture::vulkan::Texture

#[repr(C)]pub struct Texture {
    pub image: u64,
    pub device: *mut VkDevice_T,
    pub physical_device: *mut VkPhysicalDevice_T,
    pub instance: *mut VkInstance_T,
    pub queue: *mut VkQueue_T,
    pub queue_family_index: u32,
    pub width: u32,
    pub height: u32,
    pub format: u32,
    pub sample_count: u32,
}

Fields

image: u64device: *mut VkDevice_Tphysical_device: *mut VkPhysicalDevice_Tinstance: *mut VkInstance_Tqueue: *mut VkQueue_Tqueue_family_index: u32width: u32height: u32format: u32sample_count: u32

Trait Implementations

impl Clone for Texture[src]

impl Copy for Texture[src]

impl Debug for Texture[src]

impl Send for Texture[src]

impl Sync for Texture[src]

Auto Trait Implementations

impl RefUnwindSafe for Texture

impl Unpin for Texture

impl UnwindSafe for Texture

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.