[][src]Struct bedrock::vk::VkExtent2D

#[repr(C)]
pub struct VkExtent2D {
    pub width: u32,
    pub height: u32,
}

Fields

width: u32height: u32

Trait Implementations

impl AsRef<VkExtent2D> for Extent2D[src]

impl Clone for VkExtent2D[src]

impl Debug for VkExtent2D[src]

impl Default for VkExtent2D[src]

impl Eq for VkExtent2D[src]

impl From<Extent2D> for VkExtent2D[src]

impl From<VkExtent2D> for Extent2D[src]

impl PartialEq<VkExtent2D> for VkExtent2D[src]

impl StructuralEq for VkExtent2D[src]

impl StructuralPartialEq for VkExtent2D[src]

Auto Trait Implementations

impl RefUnwindSafe for VkExtent2D

impl Send for VkExtent2D

impl Sync for VkExtent2D

impl Unpin for VkExtent2D

impl UnwindSafe for VkExtent2D

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.