Struct gfx::handle::UnorderedAccessView []

pub struct UnorderedAccessView<R, T>(_, _) where R: Resources;

Type-safe Unordered Access View Handle

Trait Implementations

impl<R, T> PartialEq<UnorderedAccessView<R, T>> for UnorderedAccessView<R, T> where R: Resources + PartialEq<R>, T: PartialEq<T>

fn eq(&self, __arg_0: &UnorderedAccessView<R, T>) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &UnorderedAccessView<R, T>) -> bool

This method tests for !=.

impl<R, T> Hash for UnorderedAccessView<R, T> where R: Resources + Hash, T: Hash

fn hash<__HRT>(&self, __arg_0: &mut __HRT) where __HRT: Hasher

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

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

Formats the value using the given formatter.

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

fn clone(&self) -> UnorderedAccessView<R, T>

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, T> Typed for UnorderedAccessView<R, T> where R: Resources

type Raw = RawUnorderedAccessView<R>

The raw type behind the phantom.

fn new(handle: RawUnorderedAccessView<R>) -> UnorderedAccessView<R, T>

Crete a new phantom from the raw type.

fn raw(&self) -> &RawUnorderedAccessView<R>

Get an internal reference to the raw type.