[][src]Struct vulkano::swapchain::RectangleLayer

pub struct RectangleLayer {
    pub offset: [i32; 2],
    pub extent: [u32; 2],
    pub layer: u32,
}

Represents a rectangular region on an image layer.

Fields

offset: [i32; 2]

Coordinates in pixels of the top-left hand corner of the rectangle.

extent: [u32; 2]

Dimensions in pixels of the rectangle.

layer: u32

The layer of the image. For images with only one layer, the value of layer must be 0.

Methods

impl RectangleLayer[src]

pub fn is_compatible_with<W>(&self, swapchain: &Swapchain<W>) -> bool[src]

Returns true if this rectangle layer is compatible with swapchain.

Trait Implementations

impl Clone for RectangleLayer[src]

impl Copy for RectangleLayer[src]

impl Eq for RectangleLayer[src]

impl PartialEq<RectangleLayer> for RectangleLayer[src]

impl Debug for RectangleLayer[src]

impl StructuralPartialEq for RectangleLayer[src]

impl StructuralEq for RectangleLayer[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Content for T[src]

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]