[][src]Struct openxr::SwapchainCreateInfo

pub struct SwapchainCreateInfo<G: Graphics> {
    pub create_flags: SwapchainCreateFlags,
    pub usage_flags: SwapchainUsageFlags,
    pub format: G::Format,
    pub sample_count: u32,
    pub width: u32,
    pub height: u32,
    pub face_count: u32,
    pub array_size: u32,
    pub mip_count: u32,
}

Fields

create_flags: SwapchainCreateFlagsusage_flags: SwapchainUsageFlagsformat: G::Formatsample_count: u32width: u32height: u32face_count: u32array_size: u32mip_count: u32

Trait Implementations

impl<G: Clone + Graphics> Clone for SwapchainCreateInfo<G> where
    G::Format: Clone
[src]

impl<G: Copy + Graphics> Copy for SwapchainCreateInfo<G> where
    G::Format: Copy
[src]

impl<G: Debug + Graphics> Debug for SwapchainCreateInfo<G> where
    G::Format: Debug
[src]

Auto Trait Implementations

impl<G> Send for SwapchainCreateInfo<G> where
    <G as Graphics>::Format: Send

impl<G> Sync for SwapchainCreateInfo<G> where
    <G as Graphics>::Format: Sync

impl<G> Unpin for SwapchainCreateInfo<G> where
    <G as Graphics>::Format: Unpin

impl<G> UnwindSafe for SwapchainCreateInfo<G> where
    <G as Graphics>::Format: UnwindSafe

impl<G> RefUnwindSafe for SwapchainCreateInfo<G> where
    <G as Graphics>::Format: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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]