[][src]Struct rendy_chain::State

pub struct State<R: Resource> {
    pub access: R::Access,
    pub layout: R::Layout,
    pub stages: PipelineStage,
    pub usage: R::Usage,
}

State in which node uses resource and usage flags.

Fields

access: R::Access

Access performed by the node.

layout: R::Layout

Optional layout in which node can use resource.

stages: PipelineStage

Stages at which resource is accessed.

usage: R::Usage

Usage flags required for resource.

Trait Implementations

impl<R: Clone + Resource> Clone for State<R> where
    R::Access: Clone,
    R::Layout: Clone,
    R::Usage: Clone
[src]

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

Performs copy-assignment from source. Read more

impl<R: Copy + Resource> Copy for State<R> where
    R::Access: Copy,
    R::Layout: Copy,
    R::Usage: Copy
[src]

impl<R: Debug + Resource> Debug for State<R> where
    R::Access: Debug,
    R::Layout: Debug,
    R::Usage: Debug
[src]

Auto Trait Implementations

impl<R> Send for State<R> where
    <R as Resource>::Access: Send,
    <R as Resource>::Layout: Send,
    <R as Resource>::Usage: Send

impl<R> Sync for State<R> where
    <R as Resource>::Access: Sync,
    <R as Resource>::Layout: Sync,
    <R as Resource>::Usage: Sync

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Supports for T[src]