[go: up one dir, main page]

Struct gfx::core::pso::UnorderedViewSet []

pub struct UnorderedViewSet<R>(pub [Option<R::UnorderedAccessView>; 4]) where R: Resources;

A complete set of unordered access views to be used in PSO.

Methods

impl<R> UnorderedViewSet<R> where R: Resources

fn new() -> UnorderedViewSet<R>

Create an empty set

Trait Implementations

impl<R> Debug for UnorderedViewSet<R> where R: Resources + Debug, R::UnorderedAccessView: Debug

fn fmt(&self, __arg_0: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl<R> Clone for UnorderedViewSet<R> where R: Resources + Clone, R::UnorderedAccessView: Clone

fn clone(&self) -> UnorderedViewSet<R>

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl<R> Copy for UnorderedViewSet<R> where R: Copy + Resources, R::UnorderedAccessView: Copy