[][src]Struct rendy_factory::BlitImageState

pub struct BlitImageState {
    pub subresource: SubresourceLayers,
    pub bounds: Range<Offset>,
    pub last_stage: PipelineStage,
    pub last_access: Access,
    pub last_layout: Layout,
    pub next_stage: PipelineStage,
    pub next_access: Access,
    pub next_layout: Layout,
}

A region and image states for one image in a blit.

Fields

subresource: SubresourceLayers

Subresource to use for blit

bounds: Range<Offset>

Image offset range to use for blit

last_stage: PipelineStage

Last image stage before blit

last_access: Access

Last image access before blit

last_layout: Layout

Last image layout before blit

next_stage: PipelineStage

Image stage after blit

next_access: Access

Image access after blit

next_layout: Layout

Image layout after blit

Trait Implementations

impl Clone for BlitImageState[src]

impl Debug for BlitImageState[src]

Auto Trait Implementations

impl RefUnwindSafe for BlitImageState

impl Send for BlitImageState

impl Sync for BlitImageState

impl Unpin for BlitImageState

impl UnwindSafe for BlitImageState

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.