[][src]Struct bedrock::vk::VkOffset3D

#[repr(C)]
pub struct VkOffset3D {
    pub x: i32,
    pub y: i32,
    pub z: i32,
}

Fields

x: i32y: i32z: i32

Methods

impl VkOffset3D[src]

pub fn new1(x: i32) -> Self[src]

pub fn new2(x: i32, y: i32) -> Self[src]

pub fn new(x: i32, y: i32, z: i32) -> Self[src]

Trait Implementations

impl AsRef<VkOffset3D> for Offset3D[src]

impl Clone for VkOffset3D[src]

impl Debug for VkOffset3D[src]

impl Default for VkOffset3D[src]

impl Eq for VkOffset3D[src]

impl From<Offset3D> for VkOffset3D[src]

impl From<VkOffset3D> for Offset3D[src]

impl PartialEq<VkOffset3D> for VkOffset3D[src]

impl StructuralEq for VkOffset3D[src]

impl StructuralPartialEq for VkOffset3D[src]

Auto Trait Implementations

impl RefUnwindSafe for VkOffset3D

impl Send for VkOffset3D

impl Sync for VkOffset3D

impl Unpin for VkOffset3D

impl UnwindSafe for VkOffset3D

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.