Struct gfx_hal::image::Offset[][src]

pub struct Offset {
    pub x: TexelCoordinate,
    pub y: TexelCoordinate,
    pub z: TexelCoordinate,
}

An offset into an Image used for image-to-image copy operations. All offsets are in texels, and specifying offsets other than 0 for dimensions that do not exist is undefined behavior -- for example, specifying a z offset of 1 in a two-dimensional image.

Fields

x: TexelCoordinate

X offset.

y: TexelCoordinate

Y offset.

z: TexelCoordinate

Z offset.

Implementations

impl Offset[src]

pub const ZERO: Self[src]

Zero offset shortcut.

pub fn into_bounds(self, extent: &Extent) -> Range<Offset>[src]

Convert the offset into 2-sided bounds given the extent.

Trait Implementations

impl Clone for Offset[src]

impl Copy for Offset[src]

impl Debug for Offset[src]

impl Default for Offset[src]

impl Eq for Offset[src]

impl Hash for Offset[src]

impl PartialEq<Offset> for Offset[src]

impl StructuralEq for Offset[src]

impl StructuralPartialEq for Offset[src]

Auto Trait Implementations

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.