[][src]Struct gfx_hal::command::ImageBlit

pub struct ImageBlit {
    pub src_subresource: SubresourceLayers,
    pub src_bounds: Range<Offset>,
    pub dst_subresource: SubresourceLayers,
    pub dst_bounds: Range<Offset>,
}

Parameters for an image blit operation, where a portion of one image is copied into another, possibly with scaling and filtering.

Fields

src_subresource: SubresourceLayers

Source image and layers.

src_bounds: Range<Offset>

Source image bounds.

dst_subresource: SubresourceLayers

Destination image and layers.

dst_bounds: Range<Offset>

Destination image bounds.

Trait Implementations

impl Clone for ImageBlit[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ImageBlit[src]

impl Serialize for ImageBlit[src]

impl<'de> Deserialize<'de> for ImageBlit[src]

Auto Trait Implementations

impl Unpin for ImageBlit

impl Sync for ImageBlit

impl Send for ImageBlit

impl UnwindSafe for ImageBlit

impl RefUnwindSafe for ImageBlit

Blanket Implementations

impl<T> Supports<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]