pub struct UnorderedVar {
pub name: String,
pub slot: u8,
pub usage: Usage,
}Expand description
Unordered access shader parameter.
Fields§
§name: StringName of this unordered variable.
slot: u8Slot of this unordered variable.
usage: UsageWhat program stage this UAV is used in.
Trait Implementations§
Source§impl Clone for UnorderedVar
impl Clone for UnorderedVar
Source§fn clone(&self) -> UnorderedVar
fn clone(&self) -> UnorderedVar
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UnorderedVar
impl Debug for UnorderedVar
Source§impl Hash for UnorderedVar
impl Hash for UnorderedVar
Source§impl PartialEq for UnorderedVar
impl PartialEq for UnorderedVar
impl Eq for UnorderedVar
impl StructuralPartialEq for UnorderedVar
Auto Trait Implementations§
impl Freeze for UnorderedVar
impl RefUnwindSafe for UnorderedVar
impl Send for UnorderedVar
impl Sync for UnorderedVar
impl Unpin for UnorderedVar
impl UnwindSafe for UnorderedVar
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more