[][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]

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

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

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

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

Blanket Implementations

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]

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