[][src]Enum vxdraw::ShowWindow

pub enum ShowWindow {
    Headless1k,
    Headless2x1k,
    Headless1x2k,
    Enable,
}

Information regarding window visibility

Variants

Headless1k

Runs vulkan in headless mode (hidden window) with a swapchain of 1000x1000

Headless2x1k

Runs vulkan in headless mode (hidden window) with a swapchain of 2000x1000

Headless1x2k

Runs vulkan in headless mode (hidden window) with a swapchain of 1000x2000

Enable

Runs vulkan with a visible window

Trait Implementations

impl Clone for ShowWindow[src]

impl Copy for ShowWindow[src]

impl PartialEq<ShowWindow> for ShowWindow[src]

impl Debug for ShowWindow[src]

Auto Trait Implementations

Blanket Implementations

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.

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

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

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

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

impl<T> SetParameter for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,