[][src]Struct bedrock::vk::VkExtent3D

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

Fields

width: u32height: u32depth: u32

Methods

impl VkExtent3D[src]

pub fn new1(width: u32) -> Self[src]

pub fn new2(width: u32, height: u32) -> Self[src]

pub fn new(width: u32, height: u32, depth: u32) -> Self[src]

Trait Implementations

impl AsRef<VkExtent3D> for Extent3D[src]

impl Clone for VkExtent3D[src]

impl Debug for VkExtent3D[src]

impl Default for VkExtent3D[src]

VkExtent3D { width: 1, height: 1, depth: 1 }

impl Eq for VkExtent3D[src]

impl From<Extent3D> for VkExtent3D[src]

impl From<VkExtent3D> for Extent3D[src]

impl Ord for VkExtent3D[src]

impl PartialEq<VkExtent3D> for VkExtent3D[src]

impl PartialOrd<VkExtent3D> for VkExtent3D[src]

impl StructuralEq for VkExtent3D[src]

impl StructuralPartialEq for VkExtent3D[src]

Auto Trait Implementations

impl RefUnwindSafe for VkExtent3D

impl Send for VkExtent3D

impl Sync for VkExtent3D

impl Unpin for VkExtent3D

impl UnwindSafe for VkExtent3D

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.