[][src]Enum vulkano::swapchain::FullscreenExclusive

pub enum FullscreenExclusive {
    Default,
    Allowed,
    Disallowed,
    AppControlled,
}

The way fullscreen exclusivity is handled.

Variants

Default

Indicates that the driver should determine the appropriate full-screen method by whatever means it deems appropriate.

Allowed

Indicates that the driver may use full-screen exclusive mechanisms when available. Such mechanisms may result in better performance and/or the availability of different presentation capabilities, but may require a more disruptive transition

Disallowed

Indicates that the driver should avoid using full-screen mechanisms which rely on disruptive transitions.

AppControlled

Indicates the application will manage full-screen exclusive mode by using Swapchain::acquire_fullscreen_exclusive() and Swapchain::release_fullscreen_exclusive() functions.

Trait Implementations

impl Clone for FullscreenExclusive[src]

impl Copy for FullscreenExclusive[src]

impl Debug for FullscreenExclusive[src]

impl Eq for FullscreenExclusive[src]

impl PartialEq<FullscreenExclusive> for FullscreenExclusive[src]

impl StructuralEq for FullscreenExclusive[src]

impl StructuralPartialEq for FullscreenExclusive[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> Content for T[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.