[][src]Struct rafx_api::RafxApiDefVulkan

pub struct RafxApiDefVulkan {
    pub app_name: Option<CString>,
    pub link_method: Option<VulkanLinkMethod>,
}

Vulkan-specific configuration

Fields

app_name: Option<CString>

Used as a hint for drivers for what is being run. There are no special requirements for this. It is not visible to end-users.

link_method: Option<VulkanLinkMethod>

Defines whether to load vulkan dynamically or use a statically-linked implementation. A common case where static linking is useful is linking MoltenVK on iOS devices

Trait Implementations

impl Default for RafxApiDefVulkan[src]

Auto Trait Implementations

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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

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

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

impl<T> Resource for T where
    T: Downcast + Send + Sync
[src]

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.